You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by mm...@apache.org on 2004/12/21 00:28:16 UTC

svn commit: r122901 - /incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/processor/apt/WsmAnnotationProcessorFactory.java

Author: mmerz
Date: Mon Dec 20 15:28:14 2004
New Revision: 122901

URL: http://svn.apache.org/viewcvs?view=rev&rev=122901
Log:
Removed static imports.


Modified:
   incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/processor/apt/WsmAnnotationProcessorFactory.java

Modified: incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/processor/apt/WsmAnnotationProcessorFactory.java
Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/processor/apt/WsmAnnotationProcessorFactory.java?view=diff&rev=122901&p1=incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/processor/apt/WsmAnnotationProcessorFactory.java&r1=122900&p2=incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/processor/apt/WsmAnnotationProcessorFactory.java&r2=122901
==============================================================================
--- incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/processor/apt/WsmAnnotationProcessorFactory.java	(original)
+++ incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/processor/apt/WsmAnnotationProcessorFactory.java	Mon Dec 20 15:28:14 2004
@@ -18,10 +18,9 @@
  * $Header:$
  */
 
-import static java.util.Arrays.asList;
+import java.util.Arrays;
 import java.util.Collection;
-import static java.util.Collections.emptySet;
-import static java.util.Collections.unmodifiableCollection;
+import java.util.Collections;
 import java.util.Set;
 
 import com.sun.mirror.apt.AnnotationProcessor;
@@ -31,7 +30,7 @@
 
 public class WsmAnnotationProcessorFactory implements AnnotationProcessorFactory {
     private static final Collection<String> supportedAnnotations =
-            unmodifiableCollection(asList(new String[]{
+            Collections.unmodifiableCollection(Arrays.asList(new String[]{
                 "javax.jws.WebService",
                 "javax.jws.WebMethod",
                 "javax.jws.WebParam",
@@ -44,7 +43,7 @@
                 "javax.jws.security.SecurityIdentity"
             }));
 
-    private static final Collection<String> supportedOptions = emptySet();
+    private static final Collection<String> supportedOptions = Collections.emptySet();
 
     public Collection<String> supportedAnnotationTypes() {
         return supportedAnnotations;