ICU-3501 Don't use println directly

X-SVN-Rev: 15962
This commit is contained in:
George Rhoten 2004-07-01 06:34:20 +00:00
parent e348109e64
commit baa5ea3a34

View file

@ -65,7 +65,7 @@ public class RBJavaImporter extends RBImporter {
Enumeration enum = base_lrb.getKeys();
while (enum.hasMoreElements()) {
String key = enum.nextElement().toString();
System.out.println("Resource -> " + key + " = " + base_lrb.getString(key));
RBManagerGUI.debugMsg("Resource -> " + key + " = " + base_lrb.getString(key));
}
}
}