[Fb-contrib-commit] SF.net SVN: fb-contrib:[1245] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
From: <dbr...@us...> - 2009-08-10 00:08:42
|
Revision: 1245 http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1245&view=rev Author: dbrosius Date: 2009-08-10 00:08:15 +0000 (Mon, 10 Aug 2009) Log Message: ----------- add java/lang/Object as too many fps exists with it. Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/InappropriateToStringUse.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/InappropriateToStringUse.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/InappropriateToStringUse.java 2009-08-06 06:21:33 UTC (rev 1244) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/InappropriateToStringUse.java 2009-08-10 00:08:15 UTC (rev 1245) @@ -41,6 +41,7 @@ private static final Set<String> validToStringClasses = new HashSet<String>(); static { + validToStringClasses.add("java/lang/Object"); // too many fps validToStringClasses.add("java/lang/Byte"); validToStringClasses.add("java/lang/Character"); validToStringClasses.add("java/lang/Short"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |