You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ad...@apache.org on 2008/06/22 22:18:27 UTC

svn commit: r670409 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/RecursiveCharIterator.java

Author: adelmelle
Date: Sun Jun 22 13:18:27 2008
New Revision: 670409

URL: http://svn.apache.org/viewvc?rev=670409&view=rev
Log:
Very minor tweak: simplify conditional

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/RecursiveCharIterator.java

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/RecursiveCharIterator.java
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/RecursiveCharIterator.java?rev=670409&r1=670408&r2=670409&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/RecursiveCharIterator.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/RecursiveCharIterator.java Sun Jun 22 13:18:27 2008
@@ -113,7 +113,7 @@
      */
     public boolean hasNext() {
         while (curCharIter != null) {
-            if (curCharIter.hasNext() == false) {
+            if (!curCharIter.hasNext()) {
                 getNextCharIter();
             } else {
                 return true;



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org