Revision: 456
Author: dbrosius
Date: 2006-04-16 20:42:48 -0700 (Sun, 16 Apr 2006)
ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=456&view=rev
Log Message:
-----------
Manually cleanup memory now that StatelessDetector is removed.
Modified Paths:
--------------
trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/ConfusingAutoboxedOverloading.java
Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/ConfusingAutoboxedOverloading.java
===================================================================
--- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/ConfusingAutoboxedOverloading.java 2006-04-17 03:41:44 UTC (rev 455)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/ConfusingAutoboxedOverloading.java 2006-04-17 03:42:48 UTC (rev 456)
@@ -30,7 +30,6 @@
import edu.umd.cs.findbugs.BugInstance;
import edu.umd.cs.findbugs.BugReporter;
import edu.umd.cs.findbugs.Detector;
-import edu.umd.cs.findbugs.StatelessDetector;
import edu.umd.cs.findbugs.ba.ClassContext;
import edu.umd.cs.findbugs.visitclass.PreorderVisitor;
@@ -47,7 +46,7 @@
* </pre>
* but instead maps to one that takes an int long, float or double.
*/
-public class ConfusingAutoboxedOverloading extends PreorderVisitor implements Detector, StatelessDetector
+public class ConfusingAutoboxedOverloading extends PreorderVisitor implements Detector
{
private static final int JDK15_MAJOR = 49;
@@ -69,16 +68,6 @@
}
/**
- * clone this detector so that it can be a StatelessDetector
- *
- * @return a clone of this object
- */
- @Override
- public Object clone() throws CloneNotSupportedException {
- return super.clone();
- }
-
- /**
* overrides the visitor to look for confusing signatures
*
* @param classContext the context object that holds the JavaClass currently being parsed
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|