From c6ae501354a5ce3aec1bbab2c38be64b5aeaf736 Mon Sep 17 00:00:00 2001 From: rob bygrave Date: Thu, 29 Nov 2018 09:59:16 +1300 Subject: [PATCH] #1563 - Remove deprecated noop method ServerConfig.loadTestProperties() - migrate to loadProperties() --- src/main/java/io/ebean/config/ServerConfig.java | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/main/java/io/ebean/config/ServerConfig.java b/src/main/java/io/ebean/config/ServerConfig.java index 297a9e70d..3ee4568be 100644 --- a/src/main/java/io/ebean/config/ServerConfig.java +++ b/src/main/java/io/ebean/config/ServerConfig.java @@ -2763,20 +2763,6 @@ public class ServerConfig { return list; } - /** - * Deprecated - this does nothing now, we always try to read test configuration. - *

- * Load settings from test-ebean.properties and do nothing if the properties is not found. - *

- * This is typically used when test-ebean.properties is put into the test class path and used - * to configure Ebean for running tests. - *

- */ - @Deprecated - public void loadTestProperties() { - // do nothing now ... as we always try to read test configuration and that should only - } - /** * Return the properties that we used for configuration and were set via a call to loadFromProperties(). */