]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
default all RightCurly tokens, thus adding LITERAL_IF; fix violations
authorGlenn Adams <gadams@apache.org>
Fri, 2 Mar 2012 19:56:33 +0000 (19:56 +0000)
committerGlenn Adams <gadams@apache.org>
Fri, 2 Mar 2012 19:56:33 +0000 (19:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1296418 13f79535-47bb-0310-9956-ffa450edef68

checkstyle-5.5.xml
src/codegen/unicode/java/org/apache/fop/hyphenation/UnicodeClasses.java
src/java/org/apache/fop/afp/fonts/CharacterSetBuilder.java
src/java/org/apache/fop/afp/modca/AbstractResourceGroupContainer.java
src/java/org/apache/fop/complexscripts/bidi/UnicodeBidiAlgorithm.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfLeader.java

index 9330b95015c7fc9af48957733a750bf63e506b47..416aece25b65522bd41bcc03faadeb4c2888d135 100644 (file)
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
 
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
-    <module name="RightCurly">
-      <property name="tokens" value="LITERAL_CATCH,LITERAL_ELSE,LITERAL_FINALLY,LITERAL_TRY"/>                  <!-- adding LITERAL_IF produces 5 new errors -->
-    </module>
+    <module name="RightCurly"/>
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
 
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
index 467df6b3acccfceac7e11409d08366364c929ea1..ec04b90a26720e088e98c59f0346c2f8545cac9d 100644 (file)
@@ -322,8 +322,7 @@ public final class UnicodeClasses {
             if (codes[0].equals("\\l") && codes.length != 2) {
                 ow.write("\"" + line + "\" should have one code");
                 continue;
-            }
-            else if (codes[0].equals("\\L") && codes.length != 4) {
+            } else if (codes[0].equals("\\L") && codes.length != 4) {
                 ow.write("\"" + line + "\" should have three codes");
                 continue;
             }
index aa88f26189ca00e982d57177157a84226febd179..e6c4e6907fa4863fa14497586418eeeb39e89264 100644 (file)
@@ -748,9 +748,7 @@ public abstract class CharacterSetBuilder {
                                     AFPConstants.EBCIDIC_ENCODING);
                             String charString = new String(charBytes, encoding);
                             codePages.put(gcgiString, charString);
-
-                        }
-                        else {
+                        } else {
                             position++;
                         }
                     }
index f8c5a38d3ea4437ff1daa5e69ae1fc8ee2ce8bfc..45499748ca7c596b66fa7d213f8df9ba261ddc2f 100644 (file)
@@ -180,8 +180,7 @@ implements Streamable {
     protected boolean canWrite(AbstractAFPObject obj) {
         if (obj instanceof Completable) {
             return ((Completable)obj).isComplete();
-        }
-        else {
+        } else {
             return this.isComplete();
         }
     }
index 0f24cba9d4877d1665376f4380d8cddd2073f5dd..9f61ecab83bfa8f04cf74decddf54fb40624d933 100644 (file)
@@ -536,7 +536,7 @@ public final class UnicodeBidiAlgorithm implements BidiConstants {
                     int pc = ica[k];
                     if ( isRetainedFormatting ( pc ) ) {
                         continue;
-                    } if ( pc == BidiConstants.WS ) {
+                    } else if ( pc == BidiConstants.WS ) {
                         la[k] = dl;
                     } else {
                         break;
index b3f11bc0ac063b005ac5783759dd17a6b0c2a63a..f9835ef0a5abb3621938ce648c4ecf1a199d00ad 100644 (file)
@@ -182,9 +182,7 @@ public class RtfLeader extends RtfContainer {
 
             writeGroupMark(false);
 
-        }
-        // Using white spaces with different underline formats
-        else {
+        } else { // Using white spaces with different underline formats
             writeControlWord(LEADER_IGNORE_STYLE);
             writeControlWord(LEADER_ZERO_WIDTH);
             writeGroupMark(true);