Author: akazakov
Date: 2011-12-20 13:56:30 -0500 (Tue, 20 Dec 2011)
New Revision: 37465
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/validation/suppresswarnings/Rabbit.java
Log:
https://issues.jboss.org/browse/JBIDE-10187 Add support for a @SuppressWarnings
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/validation/suppresswarnings/Rabbit.java
===================================================================
---
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/validation/suppresswarnings/Rabbit.java 2011-12-20
18:10:14 UTC (rev 37464)
+++
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/validation/suppresswarnings/Rabbit.java 2011-12-20
18:56:30 UTC (rev 37465)
@@ -4,11 +4,11 @@
import javax.enterprise.inject.Produces;
import javax.enterprise.inject.Typed;
-@SuppressWarnings("notPassivationCapableBean")
+@SuppressWarnings("cdi-not-passivation-capable")
@SessionScoped
public class Rabbit {
- @SuppressWarnings("illegalTypeInTypedDeclaration")
+ @SuppressWarnings("cdi-typed")
@Produces
@Typed(Integer.class)
String s;