Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
nfs4j
Commits
9c320994
Commit
9c320994
authored
Dec 21, 2020
by
Tigran Mkrtchyan
☕
Browse files
nfs: remove throws from HostNameMatcher constructor
The exception is never thrown. Acked-by: Lea Morschel Target: master
parent
6580dff5
Pipeline
#1788
passed with stage
in 1 minute and 10 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
core/src/main/java/org/dcache/nfs/InetAddressMatcher.java
View file @
9c320994
...
...
@@ -203,7 +203,7 @@ public abstract class InetAddressMatcher implements Predicate<InetAddress> {
public
static
class
HostNameMatcher
extends
InetAddressMatcher
{
HostNameMatcher
(
String
hostname
)
throws
UnknownHostException
{
HostNameMatcher
(
String
hostname
)
{
super
(
hostname
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment