diff options
author | Daniel Shuy <daniel_shuy@hotmail.com> | 2018-09-19 16:17:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-19 16:17:27 +0800 |
commit | c8873967437ae904713dc8054a0216f4e9e5f352 (patch) | |
tree | 145587bc3092d8e0f4b0ffdf85e5b94a89b27ef5 /website | |
parent | d8ff9ebf74eee2f6fd9adb72e66dac5b73f6a59a (diff) | |
download | lombok-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.jpage | 2 |
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; } } |