Skip to content

Commit

Permalink
WELD-1745 Make use of java.lang.reflect.Parameter in UnbackedAnnotate…
Browse files Browse the repository at this point in the history
…dParameter
  • Loading branch information
jharting committed Sep 19, 2014
1 parent cd66b07 commit f5fa7f3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@
import javax.enterprise.inject.spi.AnnotatedParameter;

import org.jboss.weld.exceptions.InvalidObjectException;
import org.jboss.weld.experimental.ExperimentalAnnotatedParameter;
import org.jboss.weld.logging.BeanLogger;
import org.jboss.weld.util.reflection.Formats;

import edu.umd.cs.findbugs.annotations.SuppressWarnings;

@SuppressWarnings(value = { "SE_BAD_FIELD", "SE_NO_SUITABLE_CONSTRUCTOR", "SE_NO_SERIALVERSIONID" }, justification = "False positive from FindBugs - serialization is handled by SerializationProxy.")
public class UnbackedAnnotatedParameter<X> extends UnbackedAnnotated implements AnnotatedParameter<X>, Serializable {
public class UnbackedAnnotatedParameter<X> extends UnbackedAnnotated implements AnnotatedParameter<X>, ExperimentalAnnotatedParameter<X>, Serializable {

private final int position;
private final AnnotatedCallable<X> declaringCallable;
Expand Down

0 comments on commit f5fa7f3

Please sign in to comment.