diff options
author | Jiri Vanek <[email protected]> | 2013-10-25 09:43:24 +0200 |
---|---|---|
committer | Jiri Vanek <[email protected]> | 2013-10-25 09:43:24 +0200 |
commit | 3d77704be0d579ad538e4f5e7150b58a850ac498 (patch) | |
tree | 62fdbc6a2fba4f1a543336103c1592f824f4632c /netx | |
parent | 4d8cfe5bdb364fe3f4fca59c263dc1cdbd87e7e5 (diff) |
OutputController.getCallerClass now gets out also from sun.applet.PluginDebug class.
Diffstat (limited to 'netx')
-rw-r--r-- | netx/net/sourceforge/jnlp/util/logging/OutputController.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/netx/net/sourceforge/jnlp/util/logging/OutputController.java b/netx/net/sourceforge/jnlp/util/logging/OutputController.java index 1efc691..41fffc4 100644 --- a/netx/net/sourceforge/jnlp/util/logging/OutputController.java +++ b/netx/net/sourceforge/jnlp/util/logging/OutputController.java @@ -362,7 +362,9 @@ public class OutputController { int i = 1; for (; i < stack.length; i++) { result = stack[i];//at least moving up - if (stack[i].getClassName().contains(OutputController.class.getName())) { + if (stack[i].getClassName().contains(OutputController.class.getName()) || + //PluginDebug.class.getName() not avaiable during netx make + stack[i].getClassName().contains("sun.applet.PluginDebug") ) { continue; } else { break; |