Skip to content

Commit

Permalink
refactor: delete wildcard imports
Browse files Browse the repository at this point in the history
  • Loading branch information
FanJups committed Jul 26, 2024
1 parent af3d6be commit 9f82f04
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
import org.springframework.core.io.ByteArrayResource;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestPart;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;

import java.io.ByteArrayInputStream;
Expand All @@ -25,7 +29,9 @@
import java.util.concurrent.atomic.AtomicInteger;

import static com.osscameroon.jsgenerator.api.rest.ConvertController.MAPPING;
import static com.osscameroon.jsgenerator.core.OutputStreamResolver.*;
import static com.osscameroon.jsgenerator.core.OutputStreamResolver.EXTENSION;
import static com.osscameroon.jsgenerator.core.OutputStreamResolver.INDEX;
import static com.osscameroon.jsgenerator.core.OutputStreamResolver.ORIGINAL;
import static java.nio.charset.StandardCharsets.UTF_8;
import static org.slf4j.LoggerFactory.getLogger;
import static org.springframework.http.MediaType.APPLICATION_JSON_VALUE;
Expand Down

0 comments on commit 9f82f04

Please sign in to comment.