Revision: 15763
http://jikesrvm.svn.sourceforge.net/jikesrvm/?rev=15763&view=revAuthor: dgrove-oss
Date: 2009-08-10 15:37:54 +0000 (Mon, 10 Aug 2009)
Log Message:
-----------
fix bug in admits test.
Modified Paths:
--------------
rvmroot/trunk/external/tuningforklib/src/com/ibm/tuningfork/tracegen/types/EventType.java
Modified: rvmroot/trunk/external/tuningforklib/src/com/ibm/tuningfork/tracegen/types/EventType.java
===================================================================
--- rvmroot/trunk/external/tuningforklib/src/com/ibm/tuningfork/tracegen/types/EventType.java 2009-08-07 20:10:07 UTC (rev 15762)
+++ rvmroot/trunk/external/tuningforklib/src/com/ibm/tuningfork/tracegen/types/EventType.java 2009-08-10 15:37:54 UTC (rev 15763)
@@ -50,7 +50,7 @@
* @return True if the event will accept attributes of the specified types.
*/
public boolean admits(int numInt, int numLong, int numDouble, int numString) {
- return (numInt == numberOfInts) && (numLong == numLong)
+ return (numInt == numberOfInts) && (numLong == numberOfLongs)
&& (numDouble == numberOfDoubles)
&& (numString == numberOfStrings);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.
http://p.sf.net/sfu/bobj-july_______________________________________________
Jikesrvm-commits mailing list
Jikesrvm-commits@...
https://lists.sourceforge.net/lists/listinfo/jikesrvm-commits