[eclipseoprofile-cvs] org.eclipse.cdt.oprofile/org.eclipse.cdt.oprofile.core/src/org/eclipse/cdt/opr
Brought to you by:
jhandcock
From: Jeremy H. <jha...@us...> - 2006-05-02 01:37:35
|
Update of /cvsroot/eclipseoprofile/org.eclipse.cdt.oprofile/org.eclipse.cdt.oprofile.core/src/org/eclipse/cdt/oprofile/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27568a/org.eclipse.cdt.oprofile.core/src/org/eclipse/cdt/oprofile/core Modified Files: ChangeLog OpInfo.java Log Message: Adding patch from Keith Seitz from Eclipse.org repository Index: OpInfo.java =================================================================== RCS file: /cvsroot/eclipseoprofile/org.eclipse.cdt.oprofile/org.eclipse.cdt.oprofile.core/src/org/eclipse/cdt/oprofile/core/OpInfo.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** OpInfo.java 14 Apr 2005 18:30:24 -0000 1.3 --- OpInfo.java 2 May 2006 01:37:25 -0000 1.4 *************** *** 52,56 **** bstr = (String) b; } ! return astr.compareTo(b); } } --- 52,56 ---- bstr = (String) b; } ! return astr.compareTo(bstr); } } Index: ChangeLog =================================================================== RCS file: /cvsroot/eclipseoprofile/org.eclipse.cdt.oprofile/org.eclipse.cdt.oprofile.core/src/org/eclipse/cdt/oprofile/core/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ChangeLog 14 Apr 2005 18:30:24 -0000 1.4 --- ChangeLog 2 May 2006 01:37:25 -0000 1.5 *************** *** 1,2 **** --- 1,7 ---- + 2006-04-28 Keith Seitz <ke...@re...> + + * OpInfo.java (SearchEventComparator.compare): Compare to String bstr + not Object b. + 2005-04-14 Keith Seitz <ke...@re...> |