Skip to content

Commit a161832

Browse files
committed
Changing the Files parameter of '*' from a return null to throwing UnsupportedOperationException.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/branches/cli-1.x@741425 13f79535-47bb-0310-9956-ffa450edef68
1 parent 38d83e1 commit a161832

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/java/org/apache/commons/cli/TypeHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,6 @@ public static File[] createFiles(String str)
241241
{
242242
// to implement/port:
243243
// return FileW.findFiles(str);
244-
return null;
244+
throw new UnsupportedOperationException("Not yet implemented");
245245
}
246246
}

0 commit comments

Comments
 (0)