You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ba...@apache.org on 2009/02/06 07:10:54 UTC

svn commit: r741425 - /commons/proper/cli/branches/cli-1.x/src/java/org/apache/commons/cli/TypeHandler.java

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");
     }
 }