diff options
author | Daniel Shuy <daniel_shuy@hotmail.com> | 2018-09-19 16:17:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-19 16:17:01 +0800 |
commit | d8ff9ebf74eee2f6fd9adb72e66dac5b73f6a59a (patch) | |
tree | afeac6d8925ae8ab7a9563e325974d4fd1fa7c62 /website | |
parent | aee4e76d864e01b5d453409e703ad54852fa57bb (diff) | |
download | lombok-d8ff9ebf74eee2f6fd9adb72e66dac5b73f6a59a.tar.gz lombok-d8ff9ebf74eee2f6fd9adb72e66dac5b73f6a59a.tar.bz2 lombok-d8ff9ebf74eee2f6fd9adb72e66dac5b73f6a59a.zip |
Fix return type in UtilityClassExample_post.jpage
Diffstat (limited to 'website')
-rw-r--r-- | website/usageExamples/experimental/UtilityClassExample_post.jpage | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/usageExamples/experimental/UtilityClassExample_post.jpage b/website/usageExamples/experimental/UtilityClassExample_post.jpage index 70810230..ad6cf583 100644 --- a/website/usageExamples/experimental/UtilityClassExample_post.jpage +++ b/website/usageExamples/experimental/UtilityClassExample_post.jpage @@ -5,7 +5,7 @@ public final class UtilityClassExample { throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated"); } - public static void addSomething(int in) { + public static int addSomething(int in) { return in + CONSTANT; } } |