]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
enable RedundantImport rule; fix violations
authorGlenn Adams <gadams@apache.org>
Fri, 2 Mar 2012 20:24:40 +0000 (20:24 +0000)
committerGlenn Adams <gadams@apache.org>
Fri, 2 Mar 2012 20:24:40 +0000 (20:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1296437 13f79535-47bb-0310-9956-ffa450edef68

12 files changed:
checkstyle-5.5.xml
src/codegen/unicode/java/org/apache/fop/complexscripts/bidi/GenerateBidiClass.java
src/java/org/apache/fop/complexscripts/bidi/BidiClass.java
src/java/org/apache/fop/complexscripts/fonts/OTFAdvancedTypographicTableReader.java
src/java/org/apache/fop/pdf/DestinationComparator.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfTextrunContainer.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfFootnote.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfListItem.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfListStyle.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfListStyleBullet.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfListStyleNumber.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfListStyleText.java

index 57ef8ae7f3d20b7e6f6abc8ffbfa3b4b72a5dcbf..293f11bb43444b0e6921b1b4177b86b3db505e8e 100644 (file)
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
 
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
-    <!-- <module name="RedundantImport"/> produces 22 new errors -->
+    <module name="RedundantImport"/>
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
 
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
index 7b1a6bb5bdb7871f92adb65b42b50a2a890733c7..616ac1cae0cde4fe209051b68d506d90733d479a 100644 (file)
@@ -30,7 +30,6 @@ import java.util.Iterator;
 import java.util.SortedSet;
 import java.util.TreeSet;
 
-import org.apache.fop.complexscripts.bidi.BidiConstants;
 import org.apache.fop.util.License;
 
 // CSOFF: LineLength
index 6e462eadc1d808bb61c05d9f7eac7951f47deef6..d2c2bd2b93dbaaabb91ca15acf2bcbb58fcd1864 100644 (file)
@@ -20,7 +20,6 @@
 package org.apache.fop.complexscripts.bidi;
 
 import java.util.Arrays;
-import org.apache.fop.complexscripts.bidi.BidiConstants;
 
 // CSOFF: WhitespaceAfterCheck
 // CSOFF: LineLengthCheck
index 539f9af30c7b695c68ca892ce3632f6c8a294d66..5fe2be852980f283b606c14ab878b4acea301d29 100644 (file)
@@ -28,18 +28,6 @@ import java.util.Map;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 
-import org.apache.fop.complexscripts.fonts.AdvancedTypographicTableFormatException;
-import org.apache.fop.complexscripts.fonts.GlyphClassTable;
-import org.apache.fop.complexscripts.fonts.GlyphCoverageTable;
-import org.apache.fop.complexscripts.fonts.GlyphDefinitionSubtable;
-import org.apache.fop.complexscripts.fonts.GlyphDefinitionTable;
-import org.apache.fop.complexscripts.fonts.GlyphMappingTable;
-import org.apache.fop.complexscripts.fonts.GlyphPositioningSubtable;
-import org.apache.fop.complexscripts.fonts.GlyphPositioningTable;
-import org.apache.fop.complexscripts.fonts.GlyphSubstitutionSubtable;
-import org.apache.fop.complexscripts.fonts.GlyphSubstitutionTable;
-import org.apache.fop.complexscripts.fonts.GlyphSubtable;
-import org.apache.fop.complexscripts.fonts.GlyphTable;
 import org.apache.fop.fonts.truetype.FontFileReader;
 import org.apache.fop.fonts.truetype.TTFDirTabEntry;
 import org.apache.fop.fonts.truetype.TTFFile;
index 0966853ea59d54c39258d267e5a4a95f547d8169..dd8e3392f27fb40968d4702a67f132632255ff7e 100644 (file)
@@ -19,8 +19,6 @@
 
 package org.apache.fop.pdf;
 
-import org.apache.fop.pdf.PDFDestination;
-
 /**
  * Comparator class to enable comparing (and
  * hence sorting) of PDFDestination objects.
index 528c05e700840a3a02a779c82a2031162c1bceba..e9c7307a26969582667b9350cfe80a022a2cefbb 100644 (file)
@@ -24,7 +24,6 @@ package org.apache.fop.render.rtf.rtflib.rtfdoc;
  */
 
 import java.io.IOException;
-import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun;
 
 /**  Interface which enables an implementing class to contain linear text runs.
  *  @author Peter Herweg, pherweg@web.de
index 1a71ed6703b3144363a436bf7c6a82087f29267e..d7ab4c71659fa6e2b0eede0ee0df9f1004aeb09e 100644 (file)
@@ -23,9 +23,6 @@ package org.apache.fop.render.rtf.rtflib.rtfdoc;
 import java.io.Writer;
 import java.io.IOException;
 
-//FOP
-import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun;
-
 /**  Model of an RTF footnote
  *  @author Peter Herweg, pherweg@web.de
  *  @author Marc Wilhelm Kuester
index 14b4b486f0bfe0eb33fbbea83091868aa5e512d0..53af6940f46920f68592382e3693940cf4198b05 100644 (file)
@@ -29,8 +29,6 @@ package org.apache.fop.render.rtf.rtflib.rtfdoc;
 import java.io.Writer;
 import java.io.IOException;
 
-import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun;
-
 /**  Model of an RTF list item, which can contain RTF paragraphs
  *  @author Bertrand Delacretaz bdelacretaz@codeconsult.ch
  *  @author Andreas Putz a.putz@skynamics.com
index e0f85ee88ca02d9a583030cef14d29d82059408f..910132fbb1d9c1c38fd8339dcb2eaf21658e6dd6 100644 (file)
@@ -29,9 +29,6 @@ package org.apache.fop.render.rtf.rtflib.rtfdoc;
 //Java
 import java.io.IOException;
 
-//FOP
-import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfElement;
-
 /**
  * Class to handle list styles.
  */
index 958f359a123eb82c2d67473d851778cf4d91ae80..9c7235352d85a193ebf86ddf049ef76d1bb843ea 100644 (file)
@@ -29,9 +29,6 @@ package org.apache.fop.render.rtf.rtflib.rtfdoc;
 //Java
 import java.io.IOException;
 
-//FOP
-import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfElement;
-
 /**
  * Class to handle bullet list style.
  */
index 6d35fee958b540f762c4b615ca31491346b0e90b..c03315715145224fd25fffd29fafc3825316cdfc 100644 (file)
@@ -29,9 +29,6 @@ package org.apache.fop.render.rtf.rtflib.rtfdoc;
 //Java
 import java.io.IOException;
 
-//FOP
-import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfElement;
-
 /**
  * Class to handle number list style.
  */
index 8eb993e0d5e2cb7f28fd7e3a4aa4999d1f324b55..e236ea4bde3894ef4a75d135274696e52831779d 100644 (file)
@@ -29,9 +29,6 @@ package org.apache.fop.render.rtf.rtflib.rtfdoc;
 //Java
 import java.io.IOException;
 
-//FOP
-import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfElement;
-
 /**
  * Class to handle text list style.
  */