Skip to content

Commit

Permalink
Use single imports instead of wildcards
Browse files Browse the repository at this point in the history
  • Loading branch information
felldo committed Oct 26, 2023
1 parent 1e89019 commit 09605d6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/src/test/java/net/fellbaum/jemoji/EmojiManagerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@

import org.junit.Test;

import java.util.*;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import java.util.Set;
import java.util.stream.Collectors;

import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

public class EmojiManagerTest {

Expand Down

0 comments on commit 09605d6

Please sign in to comment.