[Fb-contrib-commit] SF.net SVN: fb-contrib: [1018] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib
Brought to you by:
dbrosius
From: <dbr...@us...> - 2008-04-02 03:17:04
|
Revision: 1018 http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1018&view=rev Author: dbrosius Date: 2008-04-01 20:17:10 -0700 (Tue, 01 Apr 2008) Log Message: ----------- remove deprecation Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SpoiledChildInterfaceImplementor.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SpoiledChildInterfaceImplementor.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SpoiledChildInterfaceImplementor.java 2008-04-02 03:15:53 UTC (rev 1017) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SpoiledChildInterfaceImplementor.java 2008-04-02 03:17:10 UTC (rev 1018) @@ -74,7 +74,7 @@ filterSuperInterfaceMethods(inf, infMethods, superCls); if (infMethods.size() > 0) { if (!superCls.implementationOf(inf)) { - int priority = AnalysisContext.currentAnalysisContext().getSubtypes().isApplicationClass(superCls) ? NORMAL_PRIORITY : LOW_PRIORITY; + int priority = AnalysisContext.currentAnalysisContext().isApplicationClass(superCls) ? NORMAL_PRIORITY : LOW_PRIORITY; BugInstance bi = new BugInstance(this, "SCII_SPOILED_CHILD_INTERFACE_IMPLEMENTATOR", priority) .addClass(cls) .addString("Implementing interface: " + inf.getClassName()) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |