From d1b0242dc5e38cddd0e1ecc2a089c13e744d75d4 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 6 Aug 2012 22:46:17 +0200 Subject: Fixed outdated javadoc text in @Data annotation. --- src/core/lombok/Data.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core') diff --git a/src/core/lombok/Data.java b/src/core/lombok/Data.java index 59029503..dda8b144 100644 --- a/src/core/lombok/Data.java +++ b/src/core/lombok/Data.java @@ -30,7 +30,7 @@ import java.lang.annotation.Target; * Generates getters for all fields, a useful toString method, and hashCode and equals implementations that check * all non-transient fields. Will also generate setters for all non-final fields, as well as a constructor. *

- * If any method to be generated already exists (in name - the return type or parameters are not relevant), then + * If any method to be generated already exists (in name and parameter count - the return type or parameter types are not relevant), then * that method will not be generated by the Data annotation. *

* The generated constructor will have 1 parameter for each final field. The generated toString will print all fields, -- cgit