Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarranzan committed Jan 26, 2024
1 parent cf9a1a4 commit 35f33d7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package io.quarkus.ts.http.advanced.reactive;

import static io.quarkus.ts.http.advanced.reactive.MediaTypeResource.APPLICATION_YAML;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
Expand Down Expand Up @@ -95,7 +93,7 @@ public Response handleDTOYamlPostRequest(CityListDTO cityListDTO) {

@GET
@Path("/getYamlFile")
@Produces(APPLICATION_YAML)
@Produces("application/yaml")
public Response getYamlFile() throws IOException {

try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.containsStringIgnoringCase;
import static org.hamcrest.Matchers.equalTo;
import static org.junit.Assert.assertEquals;

import java.io.File;
import java.io.IOException;
Expand Down

0 comments on commit 35f33d7

Please sign in to comment.