[weld-commits] Weld SVN: r5691 - java-se/trunk/src/main/java/org/jboss/weld/environment/se/bindings.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Mon Feb 1 07:10:40 EST 2010


Author: pete.muir at jboss.org
Date: 2010-02-01 07:10:40 -0500 (Mon, 01 Feb 2010)
New Revision: 5691

Modified:
   java-se/trunk/src/main/java/org/jboss/weld/environment/se/bindings/Parameters.java
Log:
minor

Modified: java-se/trunk/src/main/java/org/jboss/weld/environment/se/bindings/Parameters.java
===================================================================
--- java-se/trunk/src/main/java/org/jboss/weld/environment/se/bindings/Parameters.java	2010-02-01 12:07:58 UTC (rev 5690)
+++ java-se/trunk/src/main/java/org/jboss/weld/environment/se/bindings/Parameters.java	2010-02-01 12:10:40 UTC (rev 5691)
@@ -1,4 +1,4 @@
-/**
+/*
  * JBoss, Home of Professional Open Source
  * Copyright 2009, Red Hat, Inc. and/or its affiliates, and individual
  * contributors by the @authors tag. See the copyright.txt in the
@@ -16,10 +16,15 @@
  */
 package org.jboss.weld.environment.se.bindings;
 
-import java.lang.annotation.ElementType;
+import static java.lang.annotation.ElementType.FIELD;
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.ElementType.PARAMETER;
+import static java.lang.annotation.ElementType.TYPE;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+
 import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
+
 import javax.inject.Qualifier;
 
 /**
@@ -27,6 +32,6 @@
  * @author Peter Royle
  */
 @Qualifier
- at Retention(RetentionPolicy.RUNTIME)
- at Target( { ElementType.PARAMETER, ElementType.METHOD, ElementType.FIELD, ElementType.TYPE })
+ at Retention(RUNTIME)
+ at Target({ PARAMETER, METHOD, FIELD, TYPE })
 public @interface Parameters {}



More information about the weld-commits mailing list