[Fb-contrib-commit] SF.net SVN: fb-contrib: [830] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
From: <dbr...@us...> - 2007-02-02 08:22:19
|
Revision: 830 http://svn.sourceforge.net/fb-contrib/?rev=830&view=rev Author: dbrosius Date: 2007-02-02 00:22:17 -0800 (Fri, 02 Feb 2007) Log Message: ----------- SCII now doesn't complain about clone.. Not sure if this is the right thing to do. 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 2007-02-02 08:11:00 UTC (rev 829) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SpoiledChildInterfaceImplementor.java 2007-02-02 08:22:17 UTC (rev 830) @@ -110,7 +110,7 @@ for (Method m : cls.getMethods()) { String methodName = m.getName(); - if (!"<init>".equals(methodName) && !"<clinit>".equals(methodName)) { + if (!"<init>".equals(methodName) && !"<clinit>".equals(methodName) && (!"clone".equals(methodName))) { methods.add(methodName + ":" + m.getSignature()); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |