diff options
author | Denis Lila <[email protected]> | 2011-03-31 14:01:04 -0400 |
---|---|---|
committer | Denis Lila <[email protected]> | 2011-03-31 14:01:04 -0400 |
commit | f25f28f27730a5cfe0cf70d5749acec8116b49a0 (patch) | |
tree | 8a500070efd5585b3075422a44ed3e9d71292977 /plugin/icedteanp/java/sun/applet/PluginObjectStore.java | |
parent | 79f501f9f49f448b3be1816ce92ba6e5a896c431 (diff) |
Make PluginDebug a bit lazier.
Diffstat (limited to 'plugin/icedteanp/java/sun/applet/PluginObjectStore.java')
-rw-r--r-- | plugin/icedteanp/java/sun/applet/PluginObjectStore.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/icedteanp/java/sun/applet/PluginObjectStore.java b/plugin/icedteanp/java/sun/applet/PluginObjectStore.java index 1f7114d..a80e327 100644 --- a/plugin/icedteanp/java/sun/applet/PluginObjectStore.java +++ b/plugin/icedteanp/java/sun/applet/PluginObjectStore.java @@ -127,7 +127,7 @@ public class PluginObjectStore { synchronized(lock) { if (PluginDebug.DEBUG) { for (Map.Entry<Integer, Object> e : objects.entrySet()) { - PluginDebug.debug(e.getKey() + "::" + e.getValue()); + PluginDebug.debug(e.getKey(), "::", e.getValue()); } } } |