[Fb-contrib-commit] SF.net SVN: fb-contrib: [701] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-12-03 10:21:51
|
Revision: 701 http://svn.sourceforge.net/fb-contrib/?rev=701&view=rev Author: dbrosius Date: 2006-12-03 02:21:49 -0800 (Sun, 03 Dec 2006) Log Message: ----------- remove unused Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java 2006-12-03 10:21:09 UTC (rev 700) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java 2006-12-03 10:21:49 UTC (rev 701) @@ -25,7 +25,6 @@ public class BloatedAssignmentScope extends BytecodeScanningDetector { BugReporter bugReporter; - private Map<Integer, Integer> regToLocationMap; private Set<Integer> ignoreRegs; private ScopeBlock rootScopeBlock; @@ -46,11 +45,9 @@ @Override public void visitClassContext(ClassContext classContext) { try { - regToLocationMap = new HashMap<Integer, Integer>(); ignoreRegs = new HashSet<Integer>(); super.visitClassContext(classContext); } finally { - regToLocationMap = null; ignoreRegs = null; } } @@ -64,7 +61,6 @@ public void visitCode(Code obj) { try { - regToLocationMap.clear(); ignoreRegs.clear(); Method method = getMethod(); if (!method.isStatic()) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |