[weld-commits] Weld SVN: r5861 - examples/trunk/se/hello-world/src/main/java/org/jboss/weld/environment/se/example/simple.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Wed Feb 17 06:56:09 EST 2010


Author: peteroyle
Date: 2010-02-17 06:56:08 -0500 (Wed, 17 Feb 2010)
New Revision: 5861

Modified:
   examples/trunk/se/hello-world/src/main/java/org/jboss/weld/environment/se/example/simple/CommandLineArgsValidator.java
Log:
WELDX-76: EMPTY_LIST --> emptyList()

Modified: examples/trunk/se/hello-world/src/main/java/org/jboss/weld/environment/se/example/simple/CommandLineArgsValidator.java
===================================================================
--- examples/trunk/se/hello-world/src/main/java/org/jboss/weld/environment/se/example/simple/CommandLineArgsValidator.java	2010-02-17 11:50:26 UTC (rev 5860)
+++ examples/trunk/se/hello-world/src/main/java/org/jboss/weld/environment/se/example/simple/CommandLineArgsValidator.java	2010-02-17 11:56:08 UTC (rev 5861)
@@ -47,7 +47,7 @@
         if (validParams.size() != 1)
         {
             errors.add( "Please supply just one parameter: your first name" );
-            validParams = Collections.EMPTY_LIST;
+            validParams = Collections.emptyList();
         }
     }
 



More information about the weld-commits mailing list