diff options
author | Glenn Adams <gadams@apache.org> | 2012-03-02 20:40:08 +0000 |
---|---|---|
committer | Glenn Adams <gadams@apache.org> | 2012-03-02 20:40:08 +0000 |
commit | 5494cc056a64aa2c66727087435cad880a896486 (patch) | |
tree | 3f2b5ca63454cc8fb0dfcbb06fe70b225025acd1 /src/codegen | |
parent | 1f284348821d293f660ebbeb0e51b80ec0b84767 (diff) | |
download | xmlgraphics-fop-5494cc056a64aa2c66727087435cad880a896486.tar.gz xmlgraphics-fop-5494cc056a64aa2c66727087435cad880a896486.zip |
enable OneStatementPerLine rule; fix violations
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1296441 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/codegen')
-rw-r--r-- | src/codegen/unicode/java/org/apache/fop/hyphenation/UnicodeClasses.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/codegen/unicode/java/org/apache/fop/hyphenation/UnicodeClasses.java b/src/codegen/unicode/java/org/apache/fop/hyphenation/UnicodeClasses.java index ec04b90a2..8a5327a0e 100644 --- a/src/codegen/unicode/java/org/apache/fop/hyphenation/UnicodeClasses.java +++ b/src/codegen/unicode/java/org/apache/fop/hyphenation/UnicodeClasses.java @@ -151,8 +151,12 @@ public final class UnicodeClasses { /** * The column numbers in the UCD file */ - public static final int UNICODE = 0, GENERAL_CATEGORY = 2, SIMPLE_UPPERCASE_MAPPING = 12, - SIMPLE_LOWERCASE_MAPPING = 13, SIMPLE_TITLECASE_MAPPING = 14, NUM_FIELDS = 15; + public static final int UNICODE = 0; + public static final int GENERAL_CATEGORY = 2; + public static final int SIMPLE_UPPERCASE_MAPPING = 12; + public static final int SIMPLE_LOWERCASE_MAPPING = 13; + public static final int SIMPLE_TITLECASE_MAPPING = 14; + public static final int NUM_FIELDS = 15; /** * Generate classes.xml from Unicode Character Database files |