Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
trumpetinc committed Feb 4, 2025
1 parent c49f15f commit c1ad499
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions core/src/main/java/feign/FeignException.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
*/
package feign;

import static feign.Util.*;
import static feign.Util.UTF_8;
import static feign.Util.caseInsensitiveCopyOf;
import static feign.Util.checkNotNull;
import static java.lang.String.format;
import static java.util.regex.Pattern.CASE_INSENSITIVE;

import java.io.ByteArrayInputStream;
import java.io.IOException;
Expand All @@ -27,13 +28,10 @@
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.charset.Charset;
import java.nio.charset.IllegalCharsetNameException;
import java.util.Collection;
import java.util.Collections;
import java.util.Map;
import java.util.Optional;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import feign.utils.ContentTypeParser;

Expand Down

0 comments on commit c1ad499

Please sign in to comment.