aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLars Knickrehm <mail@lars-sh.de>2020-10-10 01:38:33 +0200
committerRoel Spilker <r.spilker@gmail.com>2021-01-15 00:35:59 +0100
commit4f360802f59fd25fa08a1201577c19a24493802b (patch)
tree7a4dc6811e0505e622a2818161147b3ef8a167aa /src
parent2e5ea518cc4041f2ef79d5d9cc0f970d805b6e64 (diff)
downloadlombok-4f360802f59fd25fa08a1201577c19a24493802b.tar.gz
lombok-4f360802f59fd25fa08a1201577c19a24493802b.tar.bz2
lombok-4f360802f59fd25fa08a1201577c19a24493802b.zip
Fix inconsistency in lombok.toString.callSuper doc
Diffstat (limited to 'src')
-rw-r--r--src/core/lombok/ConfigurationKeys.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/ConfigurationKeys.java b/src/core/lombok/ConfigurationKeys.java
index 01a4b576..ba66649b 100644
--- a/src/core/lombok/ConfigurationKeys.java
+++ b/src/core/lombok/ConfigurationKeys.java
@@ -274,7 +274,7 @@ public class ConfigurationKeys {
*
* For any class with an {@code @ToString} annotation which extends a class other than {@code java.lang.Object}, should a call to superclass's implementation of {@code toString} be included in the generated method? (Default = skip)
*/
- public static final ConfigurationKey<CallSuperType> TO_STRING_CALL_SUPER = new ConfigurationKey<CallSuperType>("lombok.toString.callSuper", "When generating toString for classes that extend something (other than Object), either automatically take into account superclass implementation (call), or don't (skip), or warn and don't (warn). (default = warn).") {};
+ public static final ConfigurationKey<CallSuperType> TO_STRING_CALL_SUPER = new ConfigurationKey<CallSuperType>("lombok.toString.callSuper", "When generating toString for classes that extend something (other than Object), either automatically take into account superclass implementation (call), or don't (skip), or warn and don't (warn). (default = skip).") {};
/**
* lombok configuration: {@code lombok.toString.flagUsage} = {@code WARNING} | {@code ERROR}.