From 6bcddc61b4770250c84d6eb33d2b977118844c34 Mon Sep 17 00:00:00 2001
From: lorenz <stu203404@mail.uni-kiel.de>
Date: Mon, 28 Feb 2022 19:45:28 +0100
Subject: [PATCH] Fix checkstyle coloum to long

---
 .../uc4specifics/AggregatedActivePowerRecordAccumulator.java | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/theodolite-benchmarks/uc4-hazelcastjet/src/main/java/theodolite/uc4/application/uc4specifics/AggregatedActivePowerRecordAccumulator.java b/theodolite-benchmarks/uc4-hazelcastjet/src/main/java/theodolite/uc4/application/uc4specifics/AggregatedActivePowerRecordAccumulator.java
index a33b5cfea..19e0b49a6 100644
--- a/theodolite-benchmarks/uc4-hazelcastjet/src/main/java/theodolite/uc4/application/uc4specifics/AggregatedActivePowerRecordAccumulator.java
+++ b/theodolite-benchmarks/uc4-hazelcastjet/src/main/java/theodolite/uc4/application/uc4specifics/AggregatedActivePowerRecordAccumulator.java
@@ -56,7 +56,10 @@ public class AggregatedActivePowerRecordAccumulator {
   /**
    * Adds the records from another aggregator.
    */
-  public void addInputs(final String id, final double sumInW, final long count, final long timestamp) {
+  public void addInputs(final String id,
+                        final double sumInW,
+                        final long count,
+                        final long timestamp) {
     this.id = this.id == null ? id : this.id;
     this.sumInW += sumInW;
     this.count += count;
-- 
GitLab