Browse Source

Removed unnecessary Checkstyle CSOK comments


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1062741 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_1rc1old
Vincent Hennebert 13 years ago
parent
commit
9e0c21610d
1 changed files with 5 additions and 8 deletions
  1. 5
    8
      src/java/org/apache/fop/fo/FOPropertyMapping.java

+ 5
- 8
src/java/org/apache/fop/fo/FOPropertyMapping.java View File

@@ -79,14 +79,11 @@ public final class FOPropertyMapping implements Constants {
private FOPropertyMapping() {
}

private static Map<String, Integer> propNames
= new HashMap<String, Integer>(); // CSOK: VisibilityModifier
private static Map<String, Integer> subPropNames
= new HashMap<String, Integer>(); // CSOK: VisibilityModifier
private static Map<Integer, String> propIds
= new HashMap<Integer, String>(); // CSOK: VisibilityModifier

private static PropertyMaker[] generics = null; // CSOK: VisibilityModifier
private static Map<String, Integer> propNames = new HashMap<String, Integer>();
private static Map<String, Integer> subPropNames = new HashMap<String, Integer>();
private static Map<Integer, String> propIds = new HashMap<Integer, String>();

private static PropertyMaker[] generics = null;

// The rest is only used during the building of the generics array.
private Property[] enums = null;

Loading…
Cancel
Save