-
Enhancement
-
Resolution: Not an Issue
-
P4
-
6
-
generic
-
generic
This method could be helpful in constructor calls in subclasses of
SimpleJavaFileObject:
protected static URI uriFromString(String uri) {
try {
return new URI(uri);
} catch (URISyntaxException e) {
throw new IllegalArgumentException(e);
}
}
SimpleJavaFileObject:
protected static URI uriFromString(String uri) {
try {
return new URI(uri);
} catch (URISyntaxException e) {
throw new IllegalArgumentException(e);
}
}