[Fb-contrib-commit] SF.net SVN: fb-contrib:[1070] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/d
Brought to you by:
dbrosius
From: <dbr...@us...> - 2008-08-08 18:08:37
|
Revision: 1070 http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1070&view=rev Author: dbrosius Date: 2008-08-08 18:08:43 +0000 (Fri, 08 Aug 2008) Log Message: ----------- add LDC_W Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/LoggerOddities.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/LoggerOddities.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/LoggerOddities.java 2008-08-08 17:58:09 UTC (rev 1069) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/LoggerOddities.java 2008-08-08 18:08:43 UTC (rev 1070) @@ -94,7 +94,7 @@ public void sawOpcode(int seen) { String ldcClassName = null; try { - if (seen == LDC) { + if ((seen == LDC) || (seen == LDC_W)) { Constant c = getConstantRefOperand(); if (c instanceof ConstantClass) { ConstantPool pool = getConstantPool(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |