diff --git a/src/main/java/com/avaje/ebeaninternal/server/util/InternalAssert.java b/src/main/java/com/avaje/ebeaninternal/server/util/InternalAssert.java deleted file mode 100644 index 7f09d9afc..000000000 --- a/src/main/java/com/avaje/ebeaninternal/server/util/InternalAssert.java +++ /dev/null @@ -1,25 +0,0 @@ -package com.avaje.ebeaninternal.server.util; - -/** - * Helper for checking the state of the application is correct. - */ -public class InternalAssert { - - /** - * Throws an IllegalStateException if o is null. - */ - public static void notNull(Object o, String msg){ - if (o == null){ - throw new IllegalStateException(msg); - } - } - - /** - * Throws an IllegalStateException if b is not true. - */ - public static void isTrue(boolean b, String msg){ - if (!b){ - throw new IllegalStateException(msg); - } - } -}