diff options
Diffstat (limited to 'plugin/icedteanp/java/sun/applet/PluginDebug.java')
-rw-r--r-- | plugin/icedteanp/java/sun/applet/PluginDebug.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/plugin/icedteanp/java/sun/applet/PluginDebug.java b/plugin/icedteanp/java/sun/applet/PluginDebug.java index 60e2bd0..d96314c 100644 --- a/plugin/icedteanp/java/sun/applet/PluginDebug.java +++ b/plugin/icedteanp/java/sun/applet/PluginDebug.java @@ -35,17 +35,16 @@ this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ - package sun.applet; import java.io.*; public class PluginDebug { - static final boolean DEBUG = System.getenv().containsKey("ICEDTEAPLUGIN_DEBUG"); + static final boolean DEBUG = System.getenv().containsKey("ICEDTEAPLUGIN_DEBUG"); public static void debug(String message) { - if (DEBUG) - System.err.println(message); - } + if (DEBUG) + System.err.println(message); + } } |