[Fb-contrib-commit] SF.net SVN: fb-contrib: [442] trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/det
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-04-14 23:32:35
|
Revision: 442 Author: dbrosius Date: 2006-04-14 16:32:27 -0700 (Fri, 14 Apr 2006) ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=442&view=rev Log Message: ----------- don't check interfaces Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/AbstractOverriddenMethod.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/AbstractOverriddenMethod.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/AbstractOverriddenMethod.java 2006-04-12 00:56:54 UTC (rev 441) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/AbstractOverriddenMethod.java 2006-04-14 23:32:27 UTC (rev 442) @@ -63,6 +63,8 @@ try { clsContext = classContext; JavaClass cls = classContext.getJavaClass(); + if (cls.isInterface()) + return; superClasses = cls.getSuperClasses(); cls.accept(this); } catch (ClassNotFoundException cnfe) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |