You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/apache/commons/cli/TypeHandler.java
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
26
26
importjava.util.Date;
27
27
importjava.util.HashMap;
28
28
importjava.util.Map;
29
+
importjava.util.Objects;
29
30
30
31
/**
31
32
* TypeHandler will handle the pluggable conversion and verification of Option types. It handles the mapping of classes to bot converters and verifiers. It
@@ -258,11 +259,11 @@ public TypeHandler() {
258
259
* For each entry, that Class' type must match the Converter's first type.
259
260
* </p>
260
261
*
261
-
* @param converterMap The converter map.
262
+
* @param converterMap The converter map, not null.
0 commit comments