aboutsummaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
authorDaniel Shuy <daniel_shuy@hotmail.com>2018-09-19 16:17:27 +0800
committerGitHub <noreply@github.com>2018-09-19 16:17:27 +0800
commitc8873967437ae904713dc8054a0216f4e9e5f352 (patch)
tree145587bc3092d8e0f4b0ffdf85e5b94a89b27ef5 /website
parentd8ff9ebf74eee2f6fd9adb72e66dac5b73f6a59a (diff)
downloadlombok-c8873967437ae904713dc8054a0216f4e9e5f352.tar.gz
lombok-c8873967437ae904713dc8054a0216f4e9e5f352.tar.bz2
lombok-c8873967437ae904713dc8054a0216f4e9e5f352.zip
Fix return type in UtilityClassExample_pre.jpage
Diffstat (limited to 'website')
-rw-r--r--website/usageExamples/experimental/UtilityClassExample_pre.jpage2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/usageExamples/experimental/UtilityClassExample_pre.jpage b/website/usageExamples/experimental/UtilityClassExample_pre.jpage
index 85731b81..3c33a7c6 100644
--- a/website/usageExamples/experimental/UtilityClassExample_pre.jpage
+++ b/website/usageExamples/experimental/UtilityClassExample_pre.jpage
@@ -4,7 +4,7 @@ import lombok.experimental.UtilityClass;
public class UtilityClassExample {
private final int CONSTANT = 5;
- public void addSomething(int in) {
+ public int addSomething(int in) {
return in + CONSTANT;
}
}