Skip to content
Snippets Groups Projects
Commit bc864352 authored by Sören Henning's avatar Sören Henning
Browse files

Fix checkstyle issue

parent f6160d33
No related branches found
No related tags found
1 merge request!208Add benchmark implementations for Hazelcast Jet
Pipeline #5863 passed
...@@ -208,7 +208,7 @@ public class Uc4PipelineBuilder { ...@@ -208,7 +208,7 @@ public class Uc4PipelineBuilder {
// Transformed Data // Transformed Data
String[] groupList = groups.toArray(String[]::new); String[] groupList = groups.toArray(String[]::new);
SensorGroupKey[] newKeyList = new SensorGroupKey[groupList.length]; SensorGroupKey[] newKeyList = new SensorGroupKey[groupList.length];
List<Entry<SensorGroupKey, Double>> newEntryList = new ArrayList<Entry<SensorGroupKey, Double>>(); List<Entry<SensorGroupKey, Double>> newEntryList = new ArrayList<>();
for (int i = 0; i < groupList.length; i++) { for (int i = 0; i < groupList.length; i++) {
newKeyList[i] = new SensorGroupKey(keyGroupId, groupList[i]); newKeyList[i] = new SensorGroupKey(keyGroupId, groupList[i]);
newEntryList.add(Util.entry(newKeyList[i], valueInW)); newEntryList.add(Util.entry(newKeyList[i], valueInW));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment