Skip to content

Commit

Permalink
Class InetPattern is package private, so made nnewInetRange(String)
Browse files Browse the repository at this point in the history
private because no code outside jetty-util could call that method.

Signed-off-by: Simone Bordet <[email protected]>
  • Loading branch information
sbordet committed Oct 20, 2019
1 parent 92bfcb6 commit 95b205a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public boolean add(String pattern)
return _patterns.put(pattern, newInetRange(pattern)) == null;
}

protected InetPattern newInetRange(String pattern)
private InetPattern newInetRange(String pattern)
{
if (pattern == null)
return null;
Expand Down

0 comments on commit 95b205a

Please sign in to comment.