Update of /cvsroot/mauischeduler/mauisched/src/unm/maui/client
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15802/src/unm/maui/client
Modified Files:
MauiNode.java
Log Message:
Java 1.5 tweak
Index: MauiNode.java
===================================================================
RCS file: /cvsroot/mauischeduler/mauisched/src/unm/maui/client/MauiNode.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** MauiNode.java 8 Apr 2002 19:45:27 -0000 1.9
--- MauiNode.java 8 Feb 2005 06:00:45 -0000 1.10
***************
*** 483,489 ****
String str = "|Cluster="+cluster+" Showing feature="+feature;
System.out.println(str+pad.substring(0, outputw-str.length()-1)+"|");
! Enumeration enum = mapHash.keys();
! while (enum.hasMoreElements()) {
! String key = (String)enum.nextElement();
byte b = ((Byte)mapHash.get(key)).byteValue();
str = "|"+key+" => "+(char)b;
--- 483,489 ----
String str = "|Cluster="+cluster+" Showing feature="+feature;
System.out.println(str+pad.substring(0, outputw-str.length()-1)+"|");
! Enumeration enum_ = mapHash.keys();
! while (enum_.hasMoreElements()) {
! String key = (String)enum_.nextElement();
byte b = ((Byte)mapHash.get(key)).byteValue();
str = "|"+key+" => "+(char)b;
|