[Fb-contrib-commit] SF.net SVN: fb-contrib:[1167] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-04-17 08:49:45
|
Revision: 1167
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1167&view=rev
Author: dbrosius
Date: 2009-04-17 08:49:44 +0000 (Fri, 17 Apr 2009)
Log Message:
-----------
UNNC
Modified Paths:
--------------
trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/Section508Compliance.java
Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/Section508Compliance.java
===================================================================
--- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/Section508Compliance.java 2009-04-17 08:45:31 UTC (rev 1166)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/Section508Compliance.java 2009-04-17 08:49:44 UTC (rev 1167)
@@ -74,7 +74,7 @@
accessibleClass = null;
}
}
- private BugReporter bugReporter;
+ private final BugReporter bugReporter;
private OpcodeStack stack;
private Set<XField> fieldLabels;
private Map<Integer, SourceLineAnnotation> localLabels;
@@ -184,8 +184,7 @@
OpcodeStack.Item item = stack.getStackItem(0);
if (item.getUserValue() == null) {
FieldAnnotation fa = new FieldAnnotation(getClassName(), getNameConstantOperand(), getSigConstantOperand(), false);
- if (fa != null)
- fieldLabels.remove(XFactory.createXField(fa));
+ fieldLabels.remove(XFactory.createXField(fa));
}
}
} else if (seen == INVOKESPECIAL) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|