Global monster drops are retrieved from DropProvider (postgres db)

This commit is contained in:
P0nk
2023-03-16 18:00:21 +01:00
parent cc88d382e6
commit 02aa4a237f
7 changed files with 43 additions and 16 deletions

View File

@@ -1,18 +0,0 @@
package testutil;
import database.DaoException;
public class AnyValues {
public static String string() {
return "string";
}
public static int integer() {
return 17;
}
public static DaoException daoException() {
return new DaoException(string(), new RuntimeException());
}
}