diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-04-23 21:09:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-23 21:09:46 +0200 |
commit | c0a3ad3d18f1028b0bce598f0be275713249accf (patch) | |
tree | 6dd6f79edca2aa4ea597a8ad59dcb492cf902535 /src/utils/lombok/eclipse | |
parent | 6d6e3dc6a97fa39b5b03f02285744bb37931ecaa (diff) | |
parent | e6532bbe94f9b5f0452e97bc9462e084b25f7aa2 (diff) | |
download | lombok-c0a3ad3d18f1028b0bce598f0be275713249accf.tar.gz lombok-c0a3ad3d18f1028b0bce598f0be275713249accf.tar.bz2 lombok-c0a3ad3d18f1028b0bce598f0be275713249accf.zip |
Merge pull request #1670 from kdaemonv/hotfix-1
Revert some changes from f540335 which break the build
Diffstat (limited to 'src/utils/lombok/eclipse')
-rw-r--r-- | src/utils/lombok/eclipse/Eclipse.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/utils/lombok/eclipse/Eclipse.java b/src/utils/lombok/eclipse/Eclipse.java index 296c0a19..f2b5486c 100644 --- a/src/utils/lombok/eclipse/Eclipse.java +++ b/src/utils/lombok/eclipse/Eclipse.java @@ -27,6 +27,8 @@ import java.util.Arrays; import java.util.List; import java.util.regex.Pattern; +import lombok.core.ClassLiteral; +import lombok.core.FieldSelect; import org.eclipse.jdt.internal.compiler.ast.ASTNode; import org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration; import org.eclipse.jdt.internal.compiler.ast.Annotation; @@ -44,8 +46,6 @@ import org.eclipse.jdt.internal.compiler.classfmt.ClassFileConstants; import org.eclipse.jdt.internal.compiler.impl.CompilerOptions; import org.eclipse.jdt.internal.compiler.lookup.TypeIds; -import lombok.core.AnnotationValues; - public class Eclipse { private static final Annotation[] EMPTY_ANNOTATIONS_ARRAY = new Annotation[0]; /** @@ -177,13 +177,13 @@ public class Eclipse { default: return null; } } else if (e instanceof ClassLiteralAccess) { - return new AnnotationValues.ClassLiteral(Eclipse.toQualifiedName(((ClassLiteralAccess)e).type.getTypeName())); + return new ClassLiteral(Eclipse.toQualifiedName(((ClassLiteralAccess)e).type.getTypeName())); } else if (e instanceof SingleNameReference) { - return new AnnotationValues.FieldSelect(new String(((SingleNameReference)e).token)); + return new FieldSelect(new String(((SingleNameReference)e).token)); } else if (e instanceof QualifiedNameReference) { String qName = Eclipse.toQualifiedName(((QualifiedNameReference)e).tokens); int idx = qName.lastIndexOf('.'); - return new AnnotationValues.FieldSelect(idx == -1 ? qName : qName.substring(idx+1)); + return new FieldSelect(idx == -1 ? qName : qName.substring(idx+1)); } return null; |