From: Mike H. <he...@us...> - 2002-12-06 18:38:40
|
Update of /cvsroot/velcro/velcro/main/src/java/velcro/broadcaster In directory sc8-pr-cvs1:/tmp/cvs-serv16017/velcro/broadcaster Modified Files: MessageProcessorEntryComparator.java Log Message: Fixed matching priority comparator problem. Index: MessageProcessorEntryComparator.java =================================================================== RCS file: /cvsroot/velcro/velcro/main/src/java/velcro/broadcaster/MessageProcessorEntryComparator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MessageProcessorEntryComparator.java 4 Dec 2002 04:11:56 -0000 1.2 --- MessageProcessorEntryComparator.java 6 Dec 2002 18:37:51 -0000 1.3 *************** *** 68,72 **** return -1; } else if (e1.getPriority() == e2.getPriority()) { ! return 0; } else { return 1; --- 68,72 ---- return -1; } else if (e1.getPriority() == e2.getPriority()) { ! return e1.getEjbName().compareTo(e2.getEjbName()); } else { return 1; *************** *** 78,81 **** --- 78,84 ---- /* * $Log$ + * Revision 1.3 2002/12/06 18:37:51 heathm + * Fixed matching priority comparator problem. + * * Revision 1.2 2002/12/04 04:11:56 heathm * Fixed null checking. |