diff options
author | Omair Majid <[email protected]> | 2013-09-23 12:34:25 -0400 |
---|---|---|
committer | Omair Majid <[email protected]> | 2013-09-23 12:34:25 -0400 |
commit | 0b4378d462bf9e44afe71d8c87adf682dd116c50 (patch) | |
tree | c91b0ace61b30e086d54c2a09f3d748a09c8461a /netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java | |
parent | 9ba69baff18dd24b207e0a8b6ad76133fe4ea536 (diff) |
Unit tests for JNLPProxySelector
This contains one functional change:
- String host = uri.getSchemeSpecificPart().split(":")[0];
+ String host = uri.getHost();
Given the URI of "socket://example.org", the first line
evaluates to "//example.org", while the second one (correctly)
evaluates to "example.org".
Diffstat (limited to 'netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java')
-rw-r--r-- | netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java b/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java index 816807b..a2fcb7d 100644 --- a/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java +++ b/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java @@ -265,7 +265,7 @@ public class JNLPRuntime { // plug in a custom authenticator and proxy selector Authenticator.setDefault(new JNLPAuthenticator()); - ProxySelector.setDefault(new BrowserAwareProxySelector()); + ProxySelector.setDefault(new BrowserAwareProxySelector(config)); // Restrict access to netx classes Security.setProperty("package.access", |