Browse Source

Minor cleanup: simplified conditional

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@670770 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_0
Andreas L. Delmelle 16 years ago
parent
commit
05f5dd475b
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/java/org/apache/fop/fonts/SingleByteFont.java

+ 2
- 2
src/java/org/apache/fop/fonts/SingleByteFont.java View File

@@ -50,8 +50,8 @@ public class SingleByteFont extends CustomFont {
/** {@inheritDoc} */
public boolean isEmbeddable() {
return (getEmbedFileName() == null && getEmbedResourceName() == null) ? false
: true;
return (!(getEmbedFileName() == null
&& getEmbedResourceName() == null));
}

/** {@inheritDoc} */

Loading…
Cancel
Save