]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fix findbugs 3 warnings
authorSimon Steiner <ssteiner@apache.org>
Wed, 8 Mar 2017 15:15:06 +0000 (15:15 +0000)
committerSimon Steiner <ssteiner@apache.org>
Wed, 8 Mar 2017 15:15:06 +0000 (15:15 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1785982 13f79535-47bb-0310-9956-ffa450edef68

fop-core/src/main/java/org/apache/fop/complexscripts/bidi/UnicodeBidiAlgorithm.java
fop-core/src/main/java/org/apache/fop/complexscripts/fonts/GlyphProcessingState.java
fop-core/src/main/java/org/apache/fop/complexscripts/fonts/OTFAdvancedTypographicTableReader.java
fop-core/src/main/java/org/apache/fop/complexscripts/util/NumberConverter.java
fop-core/src/main/java/org/apache/fop/layoutmgr/inline/FloatLayoutManager.java
fop-core/src/main/java/org/apache/fop/layoutmgr/inline/TextLayoutManager.java
fop-core/src/main/java/org/apache/fop/pdf/PDFFunction.java
fop-core/src/main/java/org/apache/fop/render/rtf/RTFHandler.java
fop-core/src/main/java/org/apache/fop/util/bitmap/DitherUtil.java

index 6b47450b79b0a462118bfe2099eee76dc72f4627..29516df15d42f0382726ce3293ec5687529e3a52 100644 (file)
@@ -382,7 +382,7 @@ public final class UnicodeBidiAlgorithm implements BidiConstants {
                 if ((bcPrev == EN) || (bcNext == EN)) {
                     wca [ i ] = EN;
                 }
-            } else if ((bc != BN) && (bc != ET)) {
+            } else if (bc != BN) {
                 bcPrev = bc;
             }
         }
index 8c30e92aa8cbeb498318a48535b4257e315b4260..02c2d1709b487f176bc4277264566934a788dd59 100644 (file)
@@ -927,6 +927,7 @@ public class GlyphProcessingState {
             al.add(igs.getAssociation(i));
         }
         gb.flip();
+        assert igs != null;
         if (igs.compareGlyphs(gb) != 0) {
             this.igs = new GlyphSequence(igs.getCharacters(), gb, al);
             this.indexLast = gb.limit();
index dd38ca9523fe606b920920ecc20c426d08553a47..6c939acae30f38d118c5a0de54dc47bd64ae8291 100644 (file)
@@ -150,14 +150,12 @@ public final class OTFAdvancedTypographicTableReader {
             log.debug(tableTag + " lang sys table non-required feature count: " + nf);
         }
         // read (non-required) feature indices
-        int[] fia = new int[nf];
         List fl = new java.util.ArrayList();
         for (int i = 0; i < nf; i++) {
             int fi = in.readTTFUShort();
             if (log.isDebugEnabled()) {
                 log.debug(tableTag + " lang sys table non-required feature index: " + fi);
             }
-            fia[i] = fi;
             fl.add("f" + fi);
         }
         if (seLanguages == null) {
@@ -265,14 +263,12 @@ public final class OTFAdvancedTypographicTableReader {
             log.debug(tableTag + " feature table lookup list index count: " + nl);
         }
         // read lookup table indices
-        int[] lia = new int[nl];
         List lul = new java.util.ArrayList();
         for (int i = 0; i < nl; i++) {
             int li = in.readTTFUShort();
             if (log.isDebugEnabled()) {
                 log.debug(tableTag + " feature table lookup index: " + li);
             }
-            lia[i] = li;
             lul.add("lu" + li);
         }
         seFeatures.put("f" + featureIndex, new Object[] { featureTag, lul });
@@ -710,13 +706,11 @@ public final class OTFAdvancedTypographicTableReader {
         // read coverage table
         seMapping = readCoverageTable(tableTag + " single substitution coverage", subtableOffset + co);
         // read glyph substitutions
-        int[] gsa = new int[ng];
         for (int i = 0, n = ng; i < n; i++) {
             int gs = in.readTTFUShort();
             if (log.isDebugEnabled()) {
                 log.debug(tableTag + " single substitution glyph[" + i + "]: " + gs);
             }
-            gsa[i] = gs;
             seEntries.add(gs);
         }
     }
index 48f9af9e36be28b2963f3ffc67043f6570abe04c..ec2c7d4ace546f2afe7e664818b9658d371168da 100644 (file)
@@ -1260,7 +1260,6 @@ public class NumberConverter {
                 sl.add(0x05F3);
             }
             if (hundreds > 0) {
-                assert hundreds < 10;
                 if (hundreds < 5) {
                     sl.add(map [ 18 + (hundreds - 1) ]);
                 } else if (hundreds < 9) {
@@ -1273,6 +1272,7 @@ public class NumberConverter {
                     sl.add(0x05F4);
                     sl.add(map [ 18 + (hundreds - 9) ]);
                 }
+                assert hundreds < 10;
             }
             if (number == 15) {
                 sl.add(map [ 9 - 1]);
index 4bb481dcdc028ba88ffb9b7b6183f05697d9ba81..fe63791bf9799571426aafc88d7a24d04747b5bd 100644 (file)
@@ -78,13 +78,8 @@ public class FloatLayoutManager extends InlineStackingLayoutManager {
 
     public void addAreas(PositionIterator posIter, LayoutContext context) {
         // "Unwrap" the NonLeafPositions stored in posIter
-        LinkedList positionList = new LinkedList();
-        Position pos = null;
         while (posIter.hasNext()) {
-            pos = posIter.next();
-            if (pos != null && pos.getPosition() != null) {
-                positionList.add(pos.getPosition());
-            }
+            posIter.next();
         }
     }
 
index ab7d0c01a4f85df2ff73a5ffa27b0be27698450b..6d61aa89e65e103165331d357b571265c6c13dd8 100644 (file)
@@ -1347,7 +1347,7 @@ public class TextLayoutManager extends LeafNodeLayoutManager {
             // if a break occurs the content width increases,
             // otherwise nothing happens
             addElementsForAHyphen(baseList, alignment, hyphIPD, widthIfNoBreakOccurs,
-                    mapping.breakOppAfter && mapping.isHyphenated);
+                    mapping.breakOppAfter);
         } else if (suppressibleLetterSpace) {
             // the word fragment ends with a character that acts as a hyphen
             // if a break occurs the width does not increase,
index 3ce581d7f9eabd0424b0853cdc4d9dec61507ecf..a76df9c51d0c550734c25a155dc2c48104dcdcca 100644 (file)
@@ -19,7 +19,6 @@
 
 package org.apache.fop.pdf;
 
-import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Collections;
 import java.util.List;
@@ -109,10 +108,6 @@ public class PDFFunction extends PDFObject {
 
 
     public byte[] toByteString() {
-        List<String> functionsStrings = new ArrayList<String>(function.getFunctions().size());
-        for (PDFFunction f : pdfFunctions) {
-            functionsStrings.add(f.referencePDF());
-        }
         SubFunctionRenderer subFunctionRenderer = new SubFunctionRenderer() {
 
             public void outputFunction(StringBuilder out, int functionIndex) {
index b94a07e0b8362acb27d2fb7afe27c0d166dfd07a..36a201a8f543c12fd20e13a579b73cf3cbef7536 100644 (file)
@@ -601,9 +601,6 @@ public class RTFHandler extends FOEventHandler {
 
     /** {@inheritDoc} */
     public void endColumn(TableColumn tc) {
-        if (bDefer) {
-            return;
-        }
     }
 
     /** {@inheritDoc} */
@@ -1452,9 +1449,6 @@ public class RTFHandler extends FOEventHandler {
 
     /** {@inheritDoc} */
     public void endPageNumber(PageNumber pagenum) {
-        if (bDefer) {
-            return;
-        }
     }
 
     /** {@inheritDoc} */
index 2fa2e9402e6016decaed30d04adab6b790f0e7d3..a63c00782949955216c2bca438ed62876d902746 100644 (file)
@@ -113,7 +113,7 @@ public final class DitherUtil {
             throw new IllegalArgumentException("Unsupported dither matrix: " + matrix);
         }
         if (doubleMatrix) {
-            if (doubleMatrix && (matrix != DITHER_MATRIX_4X4)) {
+            if (matrix != DITHER_MATRIX_4X4) {
                 throw new IllegalArgumentException("doubleMatrix=true is only allowed for 4x4");
             }
             dither = new byte[bayer.length / 8 * 4];