From 1f7d87d5727227d836ce35edcf7abca1e085ee05 Mon Sep 17 00:00:00 2001 From: as <asalveter@gmail.com> Date: Wed, 4 Mar 2015 10:31:53 +0100 Subject: [PATCH] fix jdoc --- .../opad/filter/AnomalyDetectionFilter.java | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/src/main/java/teetime/stage/opad/filter/AnomalyDetectionFilter.java b/src/main/java/teetime/stage/opad/filter/AnomalyDetectionFilter.java index 01815d6e..0d6eb946 100644 --- a/src/main/java/teetime/stage/opad/filter/AnomalyDetectionFilter.java +++ b/src/main/java/teetime/stage/opad/filter/AnomalyDetectionFilter.java @@ -23,7 +23,7 @@ import kieker.tools.opad.record.StorableDetectionResult; /** * - * This filter separates input values by their reach of a certain threshold (parameter). It takes events of type {@link StorableDetectionResult} and channels them + * This filter separates input values by their reach of a certain threshold (parameter). It takes events of type StorableDetectionResult and channels them * into two output ports, depending on whether the threshold was reached or not. This filter has configuration properties for the (critical) threshold. Although the * configuration of the critical threshold is possible, the value is currently not used by the filter. * @@ -33,16 +33,10 @@ import kieker.tools.opad.record.StorableDetectionResult; */ public class AnomalyDetectionFilter extends AbstractConsumerStage<StorableDetectionResult> { - /** - * The output port delivering the normalyscore if it remains below - * the threshhold. - */ + /** The output port delivering the normal score if it remains below the threshold. */ private final OutputPort<StorableDetectionResult> outputPortNormal = this.createOutputPort(); - /** - * The output port delivering the annromalyscore if it exceeds the - * threshhold. - */ + /** The output port delivering the abnormal score if it exceeds the threshold. */ private final OutputPort<StorableDetectionResult> outputPortAnnormal = this.createOutputPort(); private final double threshold; @@ -59,10 +53,7 @@ public class AnomalyDetectionFilter extends AbstractConsumerStage<StorableDetect return threshold; } - /** - * - * @param threshold - */ + /** @param threshold */ public AnomalyDetectionFilter(final double threshold) { super(); this.threshold = threshold; -- GitLab