Skip to content

Commit

Permalink
Fix test for CDI-2
Browse files Browse the repository at this point in the history
  • Loading branch information
jharting committed Nov 9, 2011
1 parent 25e89c3 commit 19d0679
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 17 deletions.
Expand Up @@ -26,8 +26,6 @@

import javax.interceptor.InterceptorBinding;

import org.jboss.weld.tests.interceptors.binding.inheritance.Binding;

@Binding(Binding.Type.ALPHA)
@InterceptorBinding
@Inherited
Expand Down
Expand Up @@ -16,8 +16,6 @@
*/
package org.jboss.weld.tests.interceptors.binding.inheritance.broken;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

Expand All @@ -26,11 +24,9 @@

import javax.enterprise.inject.Stereotype;

import org.jboss.weld.tests.interceptors.binding.inheritance.Binding;

@Binding(Binding.Type.DELTA)
@Stereotype
@Target({ TYPE, METHOD, FIELD })
@Target({ TYPE })
@Retention(RUNTIME)
public @interface European {

Expand Down
Expand Up @@ -16,8 +16,6 @@
*/
package org.jboss.weld.tests.interceptors.binding.inheritance.broken;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

Expand All @@ -26,12 +24,10 @@

import javax.enterprise.inject.Stereotype;

import org.jboss.weld.tests.interceptors.binding.inheritance.Binding;

@Binding(Binding.Type.CHARLIE)
@European
@Stereotype
@Target({ TYPE, METHOD, FIELD })
@Target({ TYPE })
@Retention(RUNTIME)
public @interface Italian {

Expand Down
Expand Up @@ -16,8 +16,6 @@
*/
package org.jboss.weld.tests.interceptors.binding.inheritance.broken;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

Expand All @@ -26,11 +24,9 @@

import javax.enterprise.inject.Stereotype;

import org.jboss.weld.tests.interceptors.binding.inheritance.Binding;

@Binding(Binding.Type.BRAVO)
@Stereotype
@Target({ TYPE, METHOD, FIELD })
@Target({ TYPE })
@Retention(RUNTIME)
public @interface Mexican {

Expand Down

0 comments on commit 19d0679

Please sign in to comment.