aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2018-04-23 21:09:46 +0200
committerGitHub <noreply@github.com>2018-04-23 21:09:46 +0200
commitc0a3ad3d18f1028b0bce598f0be275713249accf (patch)
tree6dd6f79edca2aa4ea597a8ad59dcb492cf902535 /src/core/lombok
parent6d6e3dc6a97fa39b5b03f02285744bb37931ecaa (diff)
parente6532bbe94f9b5f0452e97bc9462e084b25f7aa2 (diff)
downloadlombok-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/core/lombok')
-rw-r--r--src/core/lombok/core/AnnotationValues.java26
1 files changed, 1 insertions, 25 deletions
diff --git a/src/core/lombok/core/AnnotationValues.java b/src/core/lombok/core/AnnotationValues.java
index 8db7c857..df18ec30 100644
--- a/src/core/lombok/core/AnnotationValues.java
+++ b/src/core/lombok/core/AnnotationValues.java
@@ -42,31 +42,7 @@ public class AnnotationValues<A extends Annotation> {
private final Class<A> type;
private final Map<String, AnnotationValue> values;
private final LombokNode<?, ?, ?> ast;
-
- public static class ClassLiteral {
- private final String className;
-
- public ClassLiteral(String className) {
- this.className = className;
- }
-
- public String getClassName() {
- return className;
- }
- }
-
- public static class FieldSelect {
- private final String finalPart;
-
- public FieldSelect(String finalPart) {
- this.finalPart = finalPart;
- }
-
- public String getFinalPart() {
- return finalPart;
- }
- }
-
+
/**
* Represents a single method on the annotation class. For example, the value() method on the Getter annotation.
*/