Navigation Menu

Skip to content

Commit

Permalink
[RESTEASY-2047] Fix error in regexp
Browse files Browse the repository at this point in the history
  • Loading branch information
asoldano committed Oct 24, 2018
1 parent e660c16 commit 2b14a0b
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -98,8 +98,8 @@ public <T> T build(Class<T> aClass) throws IllegalStateException, RestClientDefi

ClassLoader classLoader = aClass.getClassLoader();

List<String> noProxyHosts = Arrays.asList(
System.getProperty("http.nonProxyHosts", "localhost|127.*|[::1]").split("|"));
List<String> noProxyHosts = Arrays.asList(
System.getProperty("http.nonProxyHosts", "localhost|127.*|[::1]").split("\\|"));

final T actualClient;

Expand Down

0 comments on commit 2b14a0b

Please sign in to comment.