diff options
author | Jiri Vanek <[email protected]> | 2014-01-16 16:21:55 +0100 |
---|---|---|
committer | Jiri Vanek <[email protected]> | 2014-01-16 16:21:55 +0100 |
commit | 5aa7f2cdfbc59fdc3daede83f3a9a79b423b1cbd (patch) | |
tree | b964f8287903f688dc891b1c33b199b4a5331424 /netx | |
parent | f72f4619b8b18245e7314073955454d3a807ac68 (diff) |
Reproducers stabilization by removing check for not presented general Exception or error.
Diffstat (limited to 'netx')
-rw-r--r-- | netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java b/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java index 1412296..43c8945 100644 --- a/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java +++ b/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java @@ -562,9 +562,7 @@ public final class DeploymentConfiguration { try { return parsePropertiesFile(file); } catch (IOException e) { - if (JNLPRuntime.isDebug()){ - OutputController.getLogger().log(e); - } + OutputController.getLogger().log(e); return null; } } |