Skip to content

Commit

Permalink
Potential solution for issue #913
Browse files Browse the repository at this point in the history
  • Loading branch information
rspilker committed Jun 28, 2016
1 parent b3ae90b commit 0a2ed81
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java
Original file line number Diff line number Diff line change
Expand Up @@ -701,8 +701,7 @@ public DelegateRecursion(char[] type, char[] member) {
private static void addAllMethodBindings0(List<BindingTuple> list, TypeBinding binding, Set<String> banList, char[] fieldName, ASTNode responsible) throws DelegateRecursion {
if (binding instanceof SourceTypeBinding) {
ClassScope scope = ((SourceTypeBinding) binding).scope;
if (scope == null) return;
scope.environment().globalOptions.storeAnnotations = true;
if (scope != null) scope.environment().globalOptions.storeAnnotations = true;
}
if (binding == null) return;

Expand Down

0 comments on commit 0a2ed81

Please sign in to comment.