[weld-commits] Weld SVN: r4256 - api/trunk/cdi/src/main/java/javax/enterprise/inject.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Fri Oct 23 22:40:43 EDT 2009


Author: gavin.king at jboss.com
Date: 2009-10-23 22:40:43 -0400 (Fri, 23 Oct 2009)
New Revision: 4256

Modified:
   api/trunk/cdi/src/main/java/javax/enterprise/inject/AmbiguousResolutionException.java
   api/trunk/cdi/src/main/java/javax/enterprise/inject/InjectionException.java
   api/trunk/cdi/src/main/java/javax/enterprise/inject/UnsatisfiedResolutionException.java
Log:
fix

Modified: api/trunk/cdi/src/main/java/javax/enterprise/inject/AmbiguousResolutionException.java
===================================================================
--- api/trunk/cdi/src/main/java/javax/enterprise/inject/AmbiguousResolutionException.java	2009-10-24 02:36:59 UTC (rev 4255)
+++ api/trunk/cdi/src/main/java/javax/enterprise/inject/AmbiguousResolutionException.java	2009-10-24 02:40:43 UTC (rev 4256)
@@ -19,11 +19,9 @@
 
 
 /**
- * An AmbiguousDependencyException is thrown when within the set of enabled
- * beans with the API type and bind- ing types declared there exists no unique
- * Web Bean with a higher precedence than all other beans in the set.
+ * Thrown when the set of enabled beans with the required bean type and 
+ * qualifiers contains multiple beans.
  * 
- * 
  * @author Pete Muir
  */
 public class AmbiguousResolutionException extends ResolutionException

Modified: api/trunk/cdi/src/main/java/javax/enterprise/inject/InjectionException.java
===================================================================
--- api/trunk/cdi/src/main/java/javax/enterprise/inject/InjectionException.java	2009-10-24 02:36:59 UTC (rev 4255)
+++ api/trunk/cdi/src/main/java/javax/enterprise/inject/InjectionException.java	2009-10-24 02:40:43 UTC (rev 4256)
@@ -19,9 +19,7 @@
 
 
 /**
- * An AmbiguousDependencyException is thrown when within the set of enabled
- * beans with the API type and bind- ing types declared there exists no unique
- * Web Bean with a higher precedence than all other beans in the set.
+ * Indicates a problem relating to dependency injection.
  * 
  * 
  * @author Pete Muir

Modified: api/trunk/cdi/src/main/java/javax/enterprise/inject/UnsatisfiedResolutionException.java
===================================================================
--- api/trunk/cdi/src/main/java/javax/enterprise/inject/UnsatisfiedResolutionException.java	2009-10-24 02:36:59 UTC (rev 4255)
+++ api/trunk/cdi/src/main/java/javax/enterprise/inject/UnsatisfiedResolutionException.java	2009-10-24 02:40:43 UTC (rev 4256)
@@ -20,7 +20,8 @@
 
 
 /**
- * Thrown if no beans can be resolved
+ * Thrown when the set of enabled beans with the required bean type 
+ * and qualifiers is empty.
  * 
  * @author Pete Muir
  */



More information about the weld-commits mailing list