Skip to content

Commit

Permalink
Do not use .* import for checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
joelmarty committed Dec 11, 2024
1 parent a551151 commit c877f08
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.*;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
Expand Down

0 comments on commit c877f08

Please sign in to comment.