Skip to content

Commit bb246dc

Browse files
committed
Use single-class imports
1 parent 1fbabef commit bb246dc

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/main/java/io/github/malczuuu/problem4j/core/Problem.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
import java.io.Serializable;
44
import java.net.URI;
5-
import java.util.*;
5+
import java.util.ArrayList;
6+
import java.util.Collections;
7+
import java.util.HashMap;
8+
import java.util.List;
9+
import java.util.Map;
10+
import java.util.Objects;
11+
import java.util.Set;
612
import java.util.stream.Collectors;
713

814
/**

src/test/java/io/github/malczuuu/problem4j/core/ProblemStatusTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package io.github.malczuuu.problem4j.core;
22

3-
import static org.junit.jupiter.api.Assertions.*;
3+
import static org.junit.jupiter.api.Assertions.assertNull;
4+
import static org.junit.jupiter.api.Assertions.assertTrue;
45

56
import java.util.Optional;
67
import org.junit.jupiter.params.ParameterizedTest;

0 commit comments

Comments
 (0)