Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Commit bcd7190

Browse files
EntenwilliNicolas-Boltz
authored andcommitted
style: format after enforcing formatter
1 parent f7f64c8 commit bcd7190

File tree

1 file changed

+4
-5
lines changed
  • bundles/org.dataflowanalysis.examplemodels/src/org/dataflowanalysis/examplemodels

1 file changed

+4
-5
lines changed

bundles/org.dataflowanalysis.examplemodels/src/org/dataflowanalysis/examplemodels/TuhhModels.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
package org.dataflowanalysis.examplemodels;
22

3+
import com.google.common.collect.ImmutableMap;
34
import java.util.ArrayList;
45
import java.util.HashMap;
56
import java.util.List;
67
import java.util.Map;
78

8-
import com.google.common.collect.ImmutableMap;
9-
109
public class TuhhModels {
11-
10+
1211
private static final Map<String, List<Integer>> TUHH_MODELS = ImmutableMap.<String, List<Integer>>builder()
1312
.put("anilallewar", List.of(0, 6, 7, 8, 9, 11, 12, 18))
1413
.put("apssouza22", List.of(0, 2, 4, 6, 7, 8, 12, 18))
@@ -26,13 +25,13 @@ public class TuhhModels {
2625
.put("sqshq", List.of(0, 6, 7, 8, 9, 10, 11, 12, 18))
2726
.put("yidongnan", List.of(0, 2, 3, 4, 5, 6, 7, 8, 9, 18))
2827
.build();
29-
28+
3029
/**
3130
* Returns a deep copy of the {@code TUHH_MODELS} map.
3231
*/
3332
public static Map<String, List<Integer>> getTuhhModels() {
3433
Map<String, List<Integer>> deepCopy = new HashMap<>();
35-
34+
3635
for (var entry : TUHH_MODELS.entrySet()) {
3736
deepCopy.put(entry.getKey(), new ArrayList<>(entry.getValue()));
3837
}

0 commit comments

Comments
 (0)