From 04fda0a6b4e3072331a1fca59162717b2ebcf845 Mon Sep 17 00:00:00 2001 From: Robin Bygrave Date: Thu, 10 Sep 2015 23:22:23 +1200 Subject: [PATCH] #411 - Refactor AutoFetch, rename to "AutoTune", store/load tuning and profiling as XML --- .../server/autotune/AutoTuneStorage.java | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/main/java/com/avaje/ebeaninternal/server/autotune/AutoTuneStorage.java diff --git a/src/main/java/com/avaje/ebeaninternal/server/autotune/AutoTuneStorage.java b/src/main/java/com/avaje/ebeaninternal/server/autotune/AutoTuneStorage.java deleted file mode 100644 index 07c7872a9..000000000 --- a/src/main/java/com/avaje/ebeaninternal/server/autotune/AutoTuneStorage.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.avaje.ebeaninternal.server.autotune; - -/** - * - */ -public interface AutoTuneStorage { - - /** - * Load and return the tuning information. - */ - AutoTuneCollection load(); - - /** - * Store the collected profiling information. - */ - void store(AutoTuneCollection profiling); -}