[Fb-contrib-commit] SF.net SVN: fb-contrib: [836] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
From: <dbr...@us...> - 2007-02-04 07:23:47
|
Revision: 836 http://svn.sourceforge.net/fb-contrib/?rev=836&view=rev Author: dbrosius Date: 2007-02-03 23:23:47 -0800 (Sat, 03 Feb 2007) Log Message: ----------- kruft cleanup Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SuspiciousJDKVersionUse.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SuspiciousJDKVersionUse.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SuspiciousJDKVersionUse.java 2007-02-04 03:29:45 UTC (rev 835) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SuspiciousJDKVersionUse.java 2007-02-04 07:23:47 UTC (rev 836) @@ -112,7 +112,6 @@ public void sawOpcode(int seen) { String clsName = null; - InputStream is = null; try { if ((seen == INVOKEVIRTUAL) //Interfaces are more difficult, ignore for now @@ -142,13 +141,6 @@ } } catch (Exception e) { // Hmm what to do - } finally { - if (is != null) { - try { - is.close(); - } catch (IOException ioe) { - } - } } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |