Skip to content

Commit

Permalink
Fixed variable name error.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Jan 12, 2016
1 parent 81a2208 commit 887d52b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions byte-buddy-dep/src/main/java/net/bytebuddy/pool/TypePool.java
Expand Up @@ -3003,12 +3003,12 @@ protected MethodExtractor(int modifiers,
this.descriptor = descriptor; this.descriptor = descriptor;
this.genericSignature = genericSignature; this.genericSignature = genericSignature;
this.exceptionName = exceptionName; this.exceptionName = exceptionName;
annotationTokens = new ArrayList<LazyTypeDescription.AnnotationToken>();
typeVariableAnnotationTokens = new HashMap<Integer, Map<String, List<LazyTypeDescription.AnnotationToken>>>(); typeVariableAnnotationTokens = new HashMap<Integer, Map<String, List<LazyTypeDescription.AnnotationToken>>>();
typeVariableBoundAnnotationTokens = new HashMap<Integer, Map<Integer, Map<String, List<LazyTypeDescription.AnnotationToken>>>>(); typeVariableBoundAnnotationTokens = new HashMap<Integer, Map<Integer, Map<String, List<LazyTypeDescription.AnnotationToken>>>>();
returnTypeAnnotationTokens = new HashMap<String, List<LazyTypeDescription.AnnotationToken>>(); returnTypeAnnotationTokens = new HashMap<String, List<LazyTypeDescription.AnnotationToken>>();
parameterTypeAnnotationTokens = new HashMap<Integer, Map<String, List<LazyTypeDescription.AnnotationToken>>>(); parameterTypeAnnotationTokens = new HashMap<Integer, Map<String, List<LazyTypeDescription.AnnotationToken>>>();
exceptionTypeAnnotationTokens = new HashMap<Integer, Map<String, List<LazyTypeDescription.AnnotationToken>>>(); exceptionTypeAnnotationTokens = new HashMap<Integer, Map<String, List<LazyTypeDescription.AnnotationToken>>>();
annotationTokens = new ArrayList<LazyTypeDescription.AnnotationToken>();
parameterAnnotationTokens = new HashMap<Integer, List<LazyTypeDescription.AnnotationToken>>(); parameterAnnotationTokens = new HashMap<Integer, List<LazyTypeDescription.AnnotationToken>>();
parameterTokens = new ArrayList<LazyTypeDescription.MethodToken.ParameterToken>(); parameterTokens = new ArrayList<LazyTypeDescription.MethodToken.ParameterToken>();
legacyParameterBag = new ParameterBag(Type.getMethodType(descriptor).getArgumentTypes()); legacyParameterBag = new ParameterBag(Type.getMethodType(descriptor).getArgumentTypes());
Expand Down Expand Up @@ -3058,7 +3058,7 @@ public AnnotationVisitor visitTypeAnnotation(int rawTypeReference, TypePath type
} }


@Override @Override
public AnnotationVisitor visitAnnotation(String descriptorcoo, boolean visible) { public AnnotationVisitor visitAnnotation(String descriptor, boolean visible) {
return new AnnotationExtractor(descriptor, annotationTokens, new ComponentTypeLocator.ForAnnotationProperty(Default.this, descriptor)); return new AnnotationExtractor(descriptor, annotationTokens, new ComponentTypeLocator.ForAnnotationProperty(Default.this, descriptor));
} }


Expand Down

0 comments on commit 887d52b

Please sign in to comment.