Browse Source

enable GenericWhitespace rule; fix violations

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1296404 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_1rc1old
Glenn Adams 12 years ago
parent
commit
48071f0254

+ 1
- 1
checkstyle-5.5.xml View File

@@ -109,7 +109,7 @@
<!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->

<!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
<!-- <module name="GenericWhitespace"/> produces 1 new error -->
<module name="GenericWhitespace"/>
<!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->

<!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->

+ 1
- 1
src/codegen/java/org/apache/fop/tools/EventProducerCollector.java View File

@@ -49,7 +49,7 @@ class EventProducerCollector {
private static final Map<String, Class<?>> PRIMITIVE_MAP;

static {
Map <String, Class<?>> m = new java.util.HashMap<String, Class<?>>();
Map<String, Class<?>> m = new java.util.HashMap<String, Class<?>>();
m.put("boolean", Boolean.class);
m.put("byte", Byte.class);
m.put("char", Character.class);

Loading…
Cancel
Save