diff options
Diffstat (limited to 'usage_examples/experimental/UtilityClassExample_post.jpage')
-rw-r--r-- | usage_examples/experimental/UtilityClassExample_post.jpage | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/usage_examples/experimental/UtilityClassExample_post.jpage b/usage_examples/experimental/UtilityClassExample_post.jpage deleted file mode 100644 index 70810230..00000000 --- a/usage_examples/experimental/UtilityClassExample_post.jpage +++ /dev/null @@ -1,11 +0,0 @@ -public final class UtilityClassExample { - private static final int CONSTANT = 5; - - private UtilityClassExample() { - throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated"); - } - - public static void addSomething(int in) { - return in + CONSTANT; - } -} |