]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Removed trailing whitespace and enabled corresponding RegexpSingleline Checkstyle...
authorVincent Hennebert <vhennebert@apache.org>
Mon, 5 Mar 2012 11:19:47 +0000 (11:19 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Mon, 5 Mar 2012 11:19:47 +0000 (11:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1297008 13f79535-47bb-0310-9956-ffa450edef68

34 files changed:
checkstyle-5.5.xml
src/codegen/unicode/java/org/apache/fop/complexscripts/bidi/GenerateBidiTestData.java
src/java/org/apache/fop/afp/fonts/CharactersetEncoder.java
src/java/org/apache/fop/afp/goca/GraphicsCharacterString.java
src/java/org/apache/fop/complexscripts/bidi/BidiConstants.java
src/java/org/apache/fop/complexscripts/fonts/GlyphDefinitionTable.java
src/java/org/apache/fop/complexscripts/fonts/GlyphMappingTable.java
src/java/org/apache/fop/complexscripts/fonts/GlyphPositioningTable.java
src/java/org/apache/fop/complexscripts/fonts/GlyphSubstitutionState.java
src/java/org/apache/fop/complexscripts/fonts/GlyphSubstitutionTable.java
src/java/org/apache/fop/complexscripts/fonts/GlyphTable.java
src/java/org/apache/fop/complexscripts/fonts/OTFAdvancedTypographicTableReader.java
src/java/org/apache/fop/complexscripts/util/CharScript.java
src/java/org/apache/fop/complexscripts/util/GlyphSequence.java
src/java/org/apache/fop/complexscripts/util/NumberConverter.java
src/java/org/apache/fop/complexscripts/util/UTF32.java
src/java/org/apache/fop/fo/properties/URIProperty.java
src/java/org/apache/fop/fonts/LazyFont.java
src/java/org/apache/fop/layoutmgr/AreaAdditionUtil.java
src/java/org/apache/fop/layoutmgr/BreakingAlgorithm.java
src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java
src/java/org/apache/fop/layoutmgr/inline/TextLayoutManager.java
src/java/org/apache/fop/render/AbstractPathOrientedRenderer.java
src/java/org/apache/fop/render/AbstractRenderer.java
src/java/org/apache/fop/render/intermediate/IFRenderer.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfTextrun.java
test/java/org/apache/fop/complexscripts/bidi/BidiAlgorithmTestCase.java
test/java/org/apache/fop/complexscripts/fonts/GDEFTestCase.java
test/java/org/apache/fop/complexscripts/fonts/GPOSTestCase.java
test/java/org/apache/fop/complexscripts/fonts/GSUBTestCase.java
test/java/org/apache/fop/complexscripts/fonts/ttx/TTXFile.java
test/java/org/apache/fop/complexscripts/util/NumberConverterTestCase.java
test/java/org/apache/fop/fotreetest/ext/AssertElement.java
test/java/org/apache/fop/pdf/PDFDocumentTestCase.java

index 4c00faf677c4e7cf0e8c862908ed6003071c5670..7d59fea00e801888460a58021e2532988ae8de37 100644 (file)
   <!-- ===================================================================================================== -->
 
   <!-- ===================================================================================================== -->
-  <!-- produces 46 new errors 
   <module name="RegexpSingleline">
     <property name="format" value="\s+$"/>
     <property name="message" value="Line has trailing spaces."/>
   </module>
-  -->
   <!-- ===================================================================================================== -->
 
   <!-- ===================================================================================================== -->
index c78880c7454d9ca0aa200ff270f67efb88e87e69..ec210db33a4a2890a44d4677cd3d8769e7a626c0 100644 (file)
@@ -994,7 +994,7 @@ public final class GenerateBidiTestData {
         int[] la = new int [ levels.size() ];
         int k = 0;
         for ( Iterator it = levels.iterator(); it.hasNext(); ) {
-            la [ k++ ] = ( (Integer) it.next() ).intValue(); 
+            la [ k++ ] = ( (Integer) it.next() ).intValue();
         }
         return la;
     }
@@ -1050,7 +1050,7 @@ public final class GenerateBidiTestData {
                     if ( it.hasNext() ) {
                         r = ( (Integer) it.next() ).intValue();
                     }
-                } 
+                }
                 ra [ i ] = r;
             }
             return ra;
@@ -1155,7 +1155,7 @@ public final class GenerateBidiTestData {
             int k = 0;
             ta [ k++ ] = bitset;
             for ( Iterator it = classes.iterator(); it.hasNext(); ) {
-                ta [ k++ ] = ( (Integer) it.next() ).intValue(); 
+                ta [ k++ ] = ( (Integer) it.next() ).intValue();
             }
             return ta;
         } else {
index 17d1acda170dd1e7d0efb4db2b721b674f4ff375..229123a82ee7ad606503c52c8a9f157de50618eb 100644 (file)
@@ -212,7 +212,7 @@ public abstract class CharactersetEncoder {
 
         /**
          * The bytes
-         * 
+         *
          * @return the bytes
          */
         public byte[] getBytes() {
index a70aeb74f4b6605cb5febdacafff84bc70929451..b86cf250feb2dcc172e890f119b60365e78a38f4 100644 (file)
@@ -84,7 +84,7 @@ public class GraphicsCharacterString extends AbstractGraphicsCoord {
      * @return the text string as an encoded byte array
      * @throws UnsupportedEncodingException, CharacterCodingException
      */
-    private byte[] getStringAsBytes() throws UnsupportedEncodingException, 
+    private byte[] getStringAsBytes() throws UnsupportedEncodingException,
             CharacterCodingException {
         return charSet.encodeChars(str).getBytes();
     }
index ef29223be3ad11f8b1742855840a17f3ffe215c9..6349417f6bb203052bd131e5548427456079e590 100644 (file)
@@ -83,7 +83,7 @@ public interface BidiConstants {
     int SURROGATE   = 20;
 
     // other constants
-    /** last 
+    /** last
     /** maximum bidirectional levels */
     int MAX_LEVELS  = 61;
     /** override flag */
index 62a502eb0383c10ef74f22efbdb500f08638a51d..18bf018dc44d09fdd2925280eccf8a0819f7002d 100644 (file)
@@ -140,7 +140,7 @@ public class GlyphDefinitionTable extends GlyphTable {
     /**
      * Determine glyph class.
      * @param gid a glyph identifier (index)
-     * @return a pre-defined glyph class (GLYPH_CLASS_BASE|GLYPH_CLASS_LIGATURE|GLYPH_CLASS_MARK|GLYPH_CLASS_COMPONENT). 
+     * @return a pre-defined glyph class (GLYPH_CLASS_BASE|GLYPH_CLASS_LIGATURE|GLYPH_CLASS_MARK|GLYPH_CLASS_COMPONENT).
      */
     public int getGlyphClass ( int gid ) {
         if ( gct != null ) {
index 6c4b0bf371d37b55aa01fc22c627528c7d539d83..e91c1d6b04c3cf2505379968dcc7abcdea9c505b 100644 (file)
@@ -162,7 +162,7 @@ public class GlyphMappingTable {
             if ( ( i = Arrays.binarySearch ( sa, gid ) ) >= 0 ) {
                 mi = getMappedIndex ( gid, sa [ i ], ma [ i ] );                // matches start of (some) range
             } else if ( ( i = - ( i + 1 ) ) == 0 ) {
-                mi = -1;                                                        // precedes first range 
+                mi = -1;                                                        // precedes first range
             } else if ( gid > ea [ --i ] ) {
                 mi = -1;                                                        // follows preceding (or last) range
             } else {
index 07a0077bf6d2ac3e436271e2ed3564735b19ff15..48d5e4789ea4754a41b788b2928b19f1d9e708a0 100644 (file)
@@ -1749,7 +1749,7 @@ public class GlyphPositioningTable extends GlyphTable {
 
         /**
          * Instantiate a DeviceTable.
-         * @param startSize the 
+         * @param startSize the
          * @param endSize the ending (scaled) size
          * @param deltas adjustments for each scaled size
          */
index 4af8c371ec187e569c174489403e07068694f8ca..8aca846ae8db17c0e63e98a7ad2672ddb9d63c8b 100644 (file)
@@ -107,7 +107,7 @@ public class GlyphSubstitutionState extends GlyphProcessingState {
      */
     public void putGlyph ( int glyph, GlyphSequence.CharAssociation a, Object predication ) {
         if ( ! ogb.hasRemaining() ) {
-            ogb = growBuffer ( ogb ); 
+            ogb = growBuffer ( ogb );
         }
         ogb.put ( glyph );
         if ( predications && ( predication != null ) ) {
index e17c8012c44fd37a30ef87647f7d16fda9853870..dfed0cc3918cbbadc816a0c4781d5303b2796135 100644 (file)
@@ -562,7 +562,7 @@ public class GlyphSubstitutionTable extends GlyphTable {
                 return false;
             } else {
                 LigatureSet ls = getLigatureSetForCoverageIndex ( ci, gi );
-                if ( ls != null ) { 
+                if ( ls != null ) {
                     boolean reverse = false;
                     GlyphTester ignores = ss.getIgnoreDefault();
                     int[] counts = ss.getGlyphsAvailable ( 0, reverse, ignores );
@@ -1334,7 +1334,7 @@ public class GlyphSubstitutionTable extends GlyphTable {
      */
     public static class Ligature {
 
-        private final int ligature;                     // (resulting) ligature glyph 
+        private final int ligature;                     // (resulting) ligature glyph
         private final int[] components;                 // component glyph codes (note that first component is implied)
 
         /**
index f95ee8778a1dbcd7e3eaa187d78ff2826b77b08d..73697f6a731ce4ec58c770e02262b814bbfb03e4 100644 (file)
@@ -267,7 +267,7 @@ public class GlyphTable {
         }
         return (UseSpec[]) uss.toArray ( new UseSpec [ uss.size() ] );
     }
-    
+
     /** {@inheritDoc} */
     public String toString() {
         StringBuffer sb = new StringBuffer(super.toString());
@@ -442,7 +442,7 @@ public class GlyphTable {
         // frozen state
         private GlyphSubtable[] subtablesArray;
         private static GlyphSubtable[] subtablesArrayEmpty       = new GlyphSubtable[0];
-        
+
         /**
          * Instantiate a LookupTable.
          * @param id the lookup table's identifier
@@ -742,7 +742,7 @@ public class GlyphTable {
         /**
          * Construct a glyph lookup table use specification.
          * @param lookupTable a glyph lookup table
-         * @param feature a feature that caused lookup table selection 
+         * @param feature a feature that caused lookup table selection
          */
         public UseSpec ( LookupTable lookupTable, String feature ) {
             this.lookupTable = lookupTable;
index 1de69c45965a2035065ad048ac07d436137cf6fc..dc5da80f813b268c5b94a34f275e6d5fb297b541 100644 (file)
@@ -1995,7 +1995,7 @@ public final class OTFAdvancedTypographicTableReader {
                 if (log.isDebugEnabled()) {
                     log.debug(tableTag + " pair set table value[" + i + "][" + j + "]: " + pv);
                 }
-            }            
+            }
         }
         // store results
         seMapping = ct;
@@ -2222,7 +2222,7 @@ public final class OTFAdvancedTypographicTableReader {
                 if (log.isDebugEnabled()) {
                     log.debug(tableTag + " mark-to-base positioning base anchor[" + i + "][" + j + "]: " + a);
                 }
-            }            
+            }
         }
         // store results
         seMapping = mct;
@@ -2463,7 +2463,7 @@ public final class OTFAdvancedTypographicTableReader {
                 if (log.isDebugEnabled()) {
                     log.debug(tableTag + " mark-to-mark positioning mark #2 anchor[" + i + "][" + j + "]: " + a);
                 }
-            }            
+            }
         }
         // store results
         seMapping = mct1;
@@ -3113,7 +3113,7 @@ public final class OTFAdvancedTypographicTableReader {
         case GPOSLookupType.SINGLE:
             subtableFormat = readSinglePosTable ( lookupType, lookupFlags, subtableOffset );
             break;
-        case GPOSLookupType.PAIR:           
+        case GPOSLookupType.PAIR:
             subtableFormat = readPairPosTable ( lookupType, lookupFlags, subtableOffset );
             break;
         case GPOSLookupType.CURSIVE:
@@ -3286,7 +3286,7 @@ public final class OTFAdvancedTypographicTableReader {
         for ( int i = 0; i < nl; i++ ) {
             lgto [ i ] = in.readTTFUShort();
         }
-        
+
         // dump info if debugging
         if (log.isDebugEnabled()) {
             log.debug(tableTag + " ligature caret coverage table offset: " + co );
index c0a2f8ee40f547f63166d4b4bafe2e7b5368d7de..b52c5a8061b5a0146db3eca103df1a7f116a93f6 100644 (file)
@@ -44,7 +44,7 @@ public final class CharScript {
     // The following script codes are based on ISO 15924. Codes less than 1000 are
     // official assignments from 15924; those equal to or greater than 1000 are FOP
     // implementation specific.
-    // 
+    //
     /** hebrew script constant */
     public static final int SCRIPT_HEBREW                               = 125;  // 'hebr'
     /** mongolian script constant */
@@ -557,17 +557,17 @@ public final class CharScript {
      * @return true if character belongs to han (unified cjk) script
      */
     public static boolean isHan ( int c ) {
-        if ( ( c >= 0x3400 ) && ( c <= 0x4DBF ) ) {             
+        if ( ( c >= 0x3400 ) && ( c <= 0x4DBF ) ) {
             return true; // cjk unified ideographs extension a
-        } else if ( ( c >= 0x4E00 ) && ( c <= 0x9FFF ) ) {      
+        } else if ( ( c >= 0x4E00 ) && ( c <= 0x9FFF ) ) {
             return true; // cjk unified ideographs
-        } else if ( ( c >= 0xF900 ) && ( c <= 0xFAFF ) ) {      
+        } else if ( ( c >= 0xF900 ) && ( c <= 0xFAFF ) ) {
             return true; // cjk compatibility ideographs
-        } else if ( ( c >= 0x20000 ) && ( c <= 0x2A6DF ) ) {    
+        } else if ( ( c >= 0x20000 ) && ( c <= 0x2A6DF ) ) {
             return true; // cjk unified ideographs extension b
-        } else if ( ( c >= 0x2A700 ) && ( c <= 0x2B73F ) ) {    
+        } else if ( ( c >= 0x2A700 ) && ( c <= 0x2B73F ) ) {
             return true; // cjk unified ideographs extension c
-        } else if ( ( c >= 0x2F800 ) && ( c <= 0x2FA1F ) ) {    
+        } else if ( ( c >= 0x2F800 ) && ( c <= 0x2FA1F ) ) {
             return true; // cjk compatibility ideographs supplement
         } else {
             return false;
index 47b158491f6ed3badc19bfdf6126fba80fbe5db3..1f52be954371e8db9df448306b4d221168ffac84 100644 (file)
@@ -842,7 +842,7 @@ public class GlyphSequence implements Cloneable {
             }
             if ( predicationMergers != null ) {
                 predicationMergers.put ( key, pm );
-            }            
+            }
         }
 
         /**
index b80014b1991173009341cc34effdf885cbf2a57f..27cefa553b0351264006c19ce55a0bd2f597c225 100644 (file)
@@ -397,7 +397,7 @@ public class NumberConverter {
 
     /**
      * Format NUMBER as word according to TYPE, which must be either
-     * Character.UPPERCASE_LETTER, Character.LOWERCASE_LETTER, or 
+     * Character.UPPERCASE_LETTER, Character.LOWERCASE_LETTER, or
      * Character.TITLECASE_LETTER. Makes use of this.language to
      * determine language of word.
      * @param number to be formatted
index 9df2020f0e78d506bcb1666fca602672627e39d2..44f1a48d15fc70e3643b40737263f2ed64ddaa27 100644 (file)
@@ -36,7 +36,7 @@ public final class UTF32 {
      * Convert Java string (UTF-16) to a Unicode scalar array (UTF-32).
      * Note that if there are any non-BMP encoded characters present in the
      * input, then the number of entries in the output array will be less
-     * than the number of elements in the input string. Any 
+     * than the number of elements in the input string. Any
      * @param s input string
      * @param substitution value to substitute for ill-formed surrogate
      * @param errorOnSubstitution throw runtime exception (IllegalArgumentException) in
index 60c3a20672f7ceecb5b8ee41050d26a08f521807..9da01570c7870cabc1e00f706f9cb7585872a910 100644 (file)
@@ -144,5 +144,5 @@ public class URIProperty extends Property {
             return p;
         }
     }
-    
+
 }
index 7474c17f1ebd31be446c94b4981b91892d667613..ab4b71739a7f3bfe14d205da6c7e6856b7fc1e8c 100644 (file)
@@ -89,7 +89,7 @@ public class LazyFont extends Typeface implements FontDescriptor, Substitutable,
         sbuf.append(",advanced=" + useAdvanced);
         sbuf.append('}');
         return sbuf.toString();
-    }   
+    }
 
     private void load(boolean fail) {
         if (!isMetricsLoaded) {
index 1bacbd29bebd6dfc0182178611e9a984c6aae06c..97484aaab2fe7ee8f511db3f355de364f7911d03 100644 (file)
@@ -49,7 +49,7 @@ public final class AreaAdditionUtil {
         if (bslm != null) {
             bslm.addId();
         }
-        
+
         // "unwrap" the NonLeafPositions stored in parentIter
         // and put them in a new list;
         LinkedList<Position> positionList = new LinkedList<Position>();
index f05efb40f968cdbf8449ff7f27e81afc570bed92..7e55c31f646efd7a5a8951953d6c88d455846c5a 100644 (file)
@@ -640,7 +640,7 @@ public abstract class BreakingAlgorithm {
                 this.par.add(0, KnuthPenalty.DUMMY_ZERO_PENALTY);
             }
         }
-        
+
         // content would overflow, insert empty line/page and try again
         return createNode(
                 lastTooLong.previous.position, lastTooLong.previous.line + 1, 1,
index 2add8e7f91550ce57c858d7993165557133f0347..1ea3c84d42f6b3bff1eec5f4f96c9343a681e4d1 100644 (file)
@@ -215,7 +215,7 @@ public class FlowLayoutManager extends BlockStackingLayoutManager
     protected List<ListElement> getNextChildElements(LayoutManager childLM, LayoutContext context,
             LayoutContext childLC, int alignment, Stack<LayoutManager> lmStack,
             Position restartPosition, LayoutManager restartLM) {
-        
+
         List<ListElement> childElements;
         if (lmStack == null) {
             childElements = childLM.getNextKnuthElements(childLC, alignment);
index 0ec6de43b03c720cd9015094273431a5d91a9cf0..645a7852753705fe99120860df90996dfd893935 100644 (file)
@@ -1103,7 +1103,7 @@ public class TextLayoutManager extends LeafNodeLayoutManager {
 
         for (int i = thisStart; i < lastIndex; i++) {
             char currentChar = foText.charAt(i);
-            
+
             //character width
             int charWidth = font.getCharWidth(currentChar);
             wordIPD = wordIPD.plus(charWidth);
index 7930e62abc80d22cb4f34e8bdf9c6d2621bd33fb..cb66f2abbc59338ce3e35c0b358c50c566764a45 100644 (file)
@@ -85,10 +85,10 @@ public abstract class AbstractPathOrientedRenderer extends PrintRenderer {
 
         int level = block.getBidiLevel();
         if ( ( level == -1 ) || ( ( level & 1 ) == 0 ) ) {
-            startx += block.getStartIndent() / 1000f; 
+            startx += block.getStartIndent() / 1000f;
             startx -= borderPaddingStart;
         } else {
-            startx += block.getEndIndent() / 1000f; 
+            startx += block.getEndIndent() / 1000f;
             startx -= borderPaddingEnd;
         }
 
index a2d74bd8dd3c6e880220c1b7dd535f1d9a01744c..770f5a7970d28079aa6fa6bf1ae96a86dd005e34 100644 (file)
@@ -553,9 +553,9 @@ public abstract class AbstractRenderer
                 if ( parent != null ) {
                     int level = parent.getBidiLevel();
                     if ( ( level == -1 ) || ( ( level & 1 ) == 0 ) ) {
-                        currentIPPosition += parent.getStartIndent(); 
+                        currentIPPosition += parent.getStartIndent();
                     } else {
-                        currentIPPosition += parent.getEndIndent(); 
+                        currentIPPosition += parent.getEndIndent();
                     }
                 }
                 renderLineArea(line);
@@ -624,9 +624,9 @@ public abstract class AbstractRenderer
         int bl = line.getBidiLevel();
         if ( bl >= 0 ) {
             if ( ( bl & 1 ) == 0 ) {
-                currentIPPosition += line.getStartIndent(); 
+                currentIPPosition += line.getStartIndent();
             } else {
-                currentIPPosition += line.getEndIndent(); 
+                currentIPPosition += line.getEndIndent();
                 // if line's content overflows line area, then
                 // ensure that overflow is drawn (extends)
                 // outside of left side of line area
@@ -636,7 +636,7 @@ public abstract class AbstractRenderer
                 }
             }
         } else {
-            currentIPPosition += line.getStartIndent(); 
+            currentIPPosition += line.getStartIndent();
         }
         for (int i = 0, l = children.size(); i < l; i++) {
             InlineArea inline = (InlineArea) children.get(i);
index ba308eadb1a1378cc19dd3fda9bf4827ab1547a7..e5c1f98c7028ab2423a15873f6a9bcd8f3b0d2dc 100644 (file)
@@ -962,7 +962,7 @@ public class IFRenderer extends AbstractPathOrientedRenderer {
 
         // warn if link trait found but not allowed, else create link
         if (linkTraitFound) {
-            StructureTreeElement structElem 
+            StructureTreeElement structElem
                     = (StructureTreeElement) ip.getTrait(Trait.STRUCTURE_TREE_ELEMENT);
             action.setStructureTreeElement(structElem);
             Link link = new Link(action, ipRect);
index 0cbd1f68637a0c8e901fd918cc4baa43be6f1c4e..95e7ff3e5d0960d48ae31acf950c6d8470829398 100644 (file)
@@ -443,7 +443,7 @@ public class RtfTextrun extends RtfContainer {
                 if (e instanceof RtfParagraphBreak) {
                     //If the element before was a paragraph break or a bookmark
                     //they will be hidden and are therefore not considered as visible
-                    if (!(aBefore instanceof RtfParagraphBreak) 
+                    if (!(aBefore instanceof RtfParagraphBreak)
                      && !(aBefore instanceof RtfBookmark)) {
                       lastParagraphBreak = (RtfParagraphBreak)e;
                     }
@@ -467,7 +467,7 @@ public class RtfTextrun extends RtfContainer {
 
         //write all children
         boolean bPrevPar = false;
-        boolean bBookmark = false; 
+        boolean bBookmark = false;
         boolean bFirst = true;
         for (Iterator it = getChildren().iterator(); it.hasNext();) {
             final RtfElement e = (RtfElement)it.next();
index 41115df9848bd6f8daaf1476f108320659c7fe7d..6593ef1ba5a059a555ee07914160f5f79026e212 100644 (file)
@@ -67,7 +67,7 @@ public class BidiAlgorithmTestCase {
         0, -1                                   // all test sets
     };
 
-    // instrumentation 
+    // instrumentation
     private int includedSequences;
     private int excludedSequences;
     private int passedSequences;
index 162b5d241536bdd740f53591098b885c1b73aca7..d9f9c4fecff0e9143f803ef9fe6ec79608c3e523 100644 (file)
@@ -3165,7 +3165,7 @@ public class GDEFTestCase {
     private TTXFile findTTX ( String fid ) {
         String pn = findTTXPath ( fid );
         assertTrue ( pn != null );
-        try { 
+        try {
             TTXFile tf = TTXFile.getFromCache ( pn );
             return tf;
         } catch ( Exception e ) {
index 881587b8eb0091da1097379476ee42ad627626ba..a2b2f7fbace2245e8a6254ba8f8dc833c462a3c5 100644 (file)
@@ -422,7 +422,7 @@ public class GPOSTestCase implements ScriptContextTester, GlyphContextTester {
     private TTXFile findTTX ( String fid ) {
         String pn = findTTXPath ( fid );
         assertTrue ( pn != null );
-        try { 
+        try {
             TTXFile tf = TTXFile.getFromCache ( pn );
             return tf;
         } catch ( Exception e ) {
index e3f122b15613907354758c8d33006bbbebd34ada..8510f5e1f83d28294e82d29214a9fc66b62af326 100644 (file)
@@ -2220,7 +2220,7 @@ public class GSUBTestCase implements ScriptContextTester, GlyphContextTester {
     private TTXFile findTTX ( String fid ) {
         String pn = findTTXPath ( fid );
         assertTrue ( pn != null );
-        try { 
+        try {
             TTXFile tf = TTXFile.getFromCache ( pn );
             return tf;
         } catch ( Exception e ) {
index 4be0fedd86fbe9662cf8057d964547e2781687c9..cc695ad42b48cb9f35a9e8695aa3efc078685ebb 100644 (file)
@@ -3301,7 +3301,7 @@ public class TTXFile {
         Integer gid = glyphIds.get ( glyph );
         if ( gid != null ) {
             if ( gmap != null ) {
-                Integer cid = gmap.get ( gid ); 
+                Integer cid = gmap.get ( gid );
                 if ( cid != null ) {
                     return cid.intValue();
                 }
index 55506b5504b8f52c06b050c1607777dc840dce97..385612b3ad4b490a1697892dacecefbd29c2ed16 100644 (file)
@@ -208,7 +208,7 @@ public class NumberConverterTestCase {
 
     static private String[][] formatRomanUpper =
     {
-        
+
         { "I" },
         { "0", "0" },
         { "1", "I" },
@@ -477,7 +477,7 @@ public class NumberConverterTestCase {
         { "999999", "bdwgm" },
         { "1000000", "bdwgn" },
     };
-    
+
     static private String[][] formatAlphabeticLatinUpper =
     {
         { "A" },
@@ -498,7 +498,7 @@ public class NumberConverterTestCase {
         { "999999", "BDWGM" },
         { "1000000", "BDWGN" },
     };
-    
+
     static private String[][] formatAlphabeticArabicHijai =
     {
         { "\u0627", null, null, "alphabetic" },
@@ -539,7 +539,7 @@ public class NumberConverterTestCase {
         { "999999", "\u0623\u0638\u0636\u0635\u062E" },
         { "1000000", "\u0623\u0638\u0636\u0635\u062F" },
     };
-    
+
     static private String[][] formatAlphabeticArabicAbjadi =
     {
         { "\u0627", null, null, "traditional" },
@@ -580,7 +580,7 @@ public class NumberConverterTestCase {
         { "999999", "\u0623\u0641\u0633\u0646\u0632" },
         { "1000000", "\u0623\u0641\u0633\u0646\u062D" },
     };
-    
+
     static private String[][] formatNumeralArabicAbjadi =
     {
         { "\u0623", null, null, "traditional" },
@@ -628,7 +628,7 @@ public class NumberConverterTestCase {
         { "1999", "\u063A\u0638\u0635\u0637" },
         { "2000", "2000" },
     };
-    
+
     static private String[][] formatAlphabeticHebrew =
     {
         { "\u05D0", null, null, "alphabetic" },
@@ -668,7 +668,7 @@ public class NumberConverterTestCase {
         { "999999", "\u05D0\u05DA\u05E9\u05E7\u05E5" },
         { "1000000", "\u05D0\u05DA\u05E9\u05E8\u05D0" },
     };
-    
+
     static private String[][] formatNumeralHebrewGematria =
     {
         { "\u05D0", null, null, "traditional" },
@@ -716,7 +716,7 @@ public class NumberConverterTestCase {
         { "1999", "\u05D0\u05F3\u05EA\u05EA\u05F4\u05E7\u05E6\u05D8" },
         { "2000", "2000" },
     };
-    
+
     static private String[][] formatAlphabeticThai =
     {
         { "\u0E01", null, null, "alphabetic" },
@@ -737,7 +737,7 @@ public class NumberConverterTestCase {
         { "999999", "\u0E0B\u0E20\u0E17\u0E0B" },
         { "1000000", "\u0E0B\u0E20\u0E17\u0E0C" },
     };
-    
+
     static private String[][] formatWordEnglishLower =
     {
         { "w", null, null, null, null, "eng" },
index f4a76d7ed469e15ace996a6a35a50a8303f4af9a..5070984d18444f8a5a959ee41de928eaabef8c6e 100644 (file)
@@ -61,7 +61,7 @@ public class AssertElement extends TestObj {
 
         ResultCollector collector = ResultCollector.getInstance();
         String propName = attlist.getValue("property");
-        String expected = attlist.getValue("expected");        
+        String expected = attlist.getValue("expected");
         String component = null;
         int dotIndex = propName.indexOf('.');
         if (dotIndex >= 0) {
index f65d738727253e85863635e47a4a84214afafaf2..8965635b901e3c058e1d44b4afda29f3d7688958 100644 (file)
@@ -42,10 +42,10 @@ public class PDFDocumentTestCase {
         StringBuilder textBuffer = new StringBuilder();
         String testString = "This is a test string, just some arbitrary data.";
         textBuffer.append(testString);
-        
+
         PDFDocument.flushTextBuffer(textBuffer, out);
         assertEquals(testString, out.toString());
-        
+
         // Should reset the textBuffer
         assertEquals(0, textBuffer.length());
         assertEquals("", textBuffer.toString());