Author: bayard
Date: Fri Feb 6 06:10:54 2009
New Revision: 741425
URL: http://svn.apache.org/viewvc?rev=741425&view=rev
Log:
Changing the Files parameter of '*' from a return null to throwing
UnsupportedOperationException.
Modified:
commons/proper/cli/branches/cli-1.x/src/java/org/apache/commons/cli/TypeHandler.java
Modified:
commons/proper/cli/branches/cli-1.x/src/java/org/apache/commons/cli/TypeHandler.java
URL:
http://svn.apache.org/viewvc/commons/proper/cli/branches/cli-1.x/src/java/org/apache/commons/cli/TypeHandler.java?rev=741425&r1=741424&r2=741425&view=diff
==============================================================================
---
commons/proper/cli/branches/cli-1.x/src/java/org/apache/commons/cli/TypeHandler.java
(original)
+++
commons/proper/cli/branches/cli-1.x/src/java/org/apache/commons/cli/TypeHandler.java
Fri Feb 6 06:10:54 2009
@@ -241,6 +241,6 @@
{
// to implement/port:
// return FileW.findFiles(str);
- return null;
+ throw new UnsupportedOperationException("Not yet implemented");
}
}