Skip to content

Commit f172b7c

Browse files
committed
No need for a fully qualified class name
1 parent 1f7aa87 commit f172b7c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/cli/Converter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public interface Converter<T, E extends Throwable> {
7171
/**
7272
* Creates a URL. Calls {@link URL#URL(String)}.
7373
*/
74-
Converter<URL, MalformedURLException> URL = java.net.URL::new;
74+
Converter<URL, MalformedURLException> URL = URL::new;
7575

7676
/**
7777
* Converts to a date using the format string Form "EEE MMM dd HH:mm:ss zzz yyyy".

0 commit comments

Comments
 (0)