From a67d940c065c0c5523f27ab958e15296d35485e0 Mon Sep 17 00:00:00 2001 From: as <asalveter@gmail.com> Date: Tue, 3 Mar 2015 17:14:31 +0100 Subject: [PATCH] organized classes --- .../stage/opad/{ => filter}/AnomalyDetectionFilter.java | 2 +- .../stage/opad/{ => filter}/AnomalyDetectionFilterTest.java | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) rename src/main/java/teetime/stage/opad/{ => filter}/AnomalyDetectionFilter.java (98%) rename src/test/java/teetime/stage/opad/{ => filter}/AnomalyDetectionFilterTest.java (97%) diff --git a/src/main/java/teetime/stage/opad/AnomalyDetectionFilter.java b/src/main/java/teetime/stage/opad/filter/AnomalyDetectionFilter.java similarity index 98% rename from src/main/java/teetime/stage/opad/AnomalyDetectionFilter.java rename to src/main/java/teetime/stage/opad/filter/AnomalyDetectionFilter.java index b39fc105..01815d6e 100644 --- a/src/main/java/teetime/stage/opad/AnomalyDetectionFilter.java +++ b/src/main/java/teetime/stage/opad/filter/AnomalyDetectionFilter.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package teetime.stage.opad; +package teetime.stage.opad.filter; import teetime.framework.AbstractConsumerStage; import teetime.framework.OutputPort; diff --git a/src/test/java/teetime/stage/opad/AnomalyDetectionFilterTest.java b/src/test/java/teetime/stage/opad/filter/AnomalyDetectionFilterTest.java similarity index 97% rename from src/test/java/teetime/stage/opad/AnomalyDetectionFilterTest.java rename to src/test/java/teetime/stage/opad/filter/AnomalyDetectionFilterTest.java index 3ad21e55..c0c8e026 100644 --- a/src/test/java/teetime/stage/opad/AnomalyDetectionFilterTest.java +++ b/src/test/java/teetime/stage/opad/filter/AnomalyDetectionFilterTest.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package teetime.stage.opad; +package teetime.stage.opad.filter; import static org.hamcrest.collection.IsIterableContainingInOrder.contains; import static org.junit.Assert.assertEquals; @@ -27,6 +27,8 @@ import org.junit.Before; import org.junit.Ignore; import org.junit.Test; +import teetime.stage.opad.filter.AnomalyDetectionFilter; + import kieker.tools.opad.record.StorableDetectionResult; /** -- GitLab