Skip to content

Commit

Permalink
Optimize imports
Browse files Browse the repository at this point in the history
Remove unused imports
Replace wildcard import with specific imports
  • Loading branch information
ErdoganSeref committed Aug 6, 2024
1 parent 5966ef5 commit 0fdb4bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 0 additions & 4 deletions src/main/java/game/Encoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
import java.util.Arrays;
import java.util.Optional;
import java.util.OptionalInt;
import java.util.regex.Pattern;
import java.util.regex.Matcher;

import java.nio.ByteBuffer;

import org.lichess.compression.BitReader;
import org.lichess.compression.BitWriter;
Expand Down
6 changes: 5 additions & 1 deletion src/main/java/game/OpeningTrie.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.*;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;

public class OpeningTrie {
private final int bitVectorLength;
Expand Down

0 comments on commit 0fdb4bd

Please sign in to comment.