[Fb-contrib-commit] SF.net SVN: fb-contrib: [749] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/c
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-12-22 18:22:14
|
Revision: 749 http://svn.sourceforge.net/fb-contrib/?rev=749&view=rev Author: dbrosius Date: 2006-12-22 10:22:12 -0800 (Fri, 22 Dec 2006) Log Message: ----------- remove dead store Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/collect/Statistics.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/collect/Statistics.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/collect/Statistics.java 2006-12-22 18:21:00 UTC (rev 748) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/collect/Statistics.java 2006-12-22 18:22:12 UTC (rev 749) @@ -22,12 +22,6 @@ } public void addMethodStatistics(String className, String methodName, String signature, MethodInfo methodInfo) { - long hashCode = className.hashCode(); - hashCode <<= 8; - hashCode |= methodName.hashCode(); - hashCode <<= 8; - hashCode |= signature.hashCode(); - Long key = getKey(className, methodName, signature); if (methodStatistics.containsKey(key)) methodStatistics.put(key, getValue(new MethodInfo())); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |