[Fb-contrib-commit] SF.net SVN: fb-contrib:[1432] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/c
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2010-01-05 05:33:55
|
Revision: 1432
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1432&view=rev
Author: dbrosius
Date: 2010-01-05 05:33:45 +0000 (Tue, 05 Jan 2010)
Log Message:
-----------
can use 1.5 methods now
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 2010-01-05 05:11:45 UTC (rev 1431)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/collect/Statistics.java 2010-01-05 05:33:45 UTC (rev 1432)
@@ -61,14 +61,14 @@
hashCode |= methodName.hashCode();
hashCode <<= 16;
hashCode |= signature.hashCode();
- return new Long(hashCode);
+ return Long.valueOf(hashCode);
}
private Long getValue(MethodInfo methodInfo) {
long value = methodInfo.numBytes;
value <<= 32;
value |= methodInfo.numMethodCalls;
- return new Long(value);
+ return Long.valueOf(value);
}
private MethodInfo buildMethodInfo(Long value) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|