aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/javac
diff options
context:
space:
mode:
authorJan Ouwens <jan.ouwens@gmail.com>2013-08-11 21:13:16 +0200
committerJan Ouwens <jan.ouwens@gmail.com>2013-08-11 21:13:16 +0200
commit05b8501071b7a7d1a31713c607785b94119767d0 (patch)
treed1aa5a65ddf843bffa5e684b55068065d12cb75b /src/core/lombok/javac
parent7faff42d85c2e21b9a3b2e0014ebc36dbe5eb155 (diff)
downloadlombok-05b8501071b7a7d1a31713c607785b94119767d0.tar.gz
lombok-05b8501071b7a7d1a31713c607785b94119767d0.tar.bz2
lombok-05b8501071b7a7d1a31713c607785b94119767d0.zip
Oops: didn't realise the text appeared in multiple places.
Diffstat (limited to 'src/core/lombok/javac')
-rw-r--r--src/core/lombok/javac/handlers/HandleEqualsAndHashCode.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/javac/handlers/HandleEqualsAndHashCode.java b/src/core/lombok/javac/handlers/HandleEqualsAndHashCode.java
index 3b1e226f..e8dde83c 100644
--- a/src/core/lombok/javac/handlers/HandleEqualsAndHashCode.java
+++ b/src/core/lombok/javac/handlers/HandleEqualsAndHashCode.java
@@ -195,7 +195,7 @@ public class HandleEqualsAndHashCode extends JavacAnnotationHandler<EqualsAndHas
// The user code couldn't possibly (barring really weird subclassing shenanigans) be in a shippable state anyway; the implementations of these 3 methods are
// all inter-related and should be written by the same entity.
String msg = String.format("Not generating %s: One of equals, hashCode, and canEqual exists. " +
- "You should either write all of these are none of these (in the latter case, lombok generates them).",
+ "You should either write all of these or none of these (in the latter case, lombok generates them).",
equalsExists == MemberExistsResult.NOT_EXISTS && hashCodeExists == MemberExistsResult.NOT_EXISTS ? "equals and hashCode" :
equalsExists == MemberExistsResult.NOT_EXISTS ? "equals" : "hashCode");
source.addWarning(msg);