Skip to content

Commit

Permalink
Remove unused imports from examples (#1681)
Browse files Browse the repository at this point in the history
Motivation:
Some of the examples contains imports that are never use by the code.
Thus the imports are not needed.

Modifications:
Remove unused imports.

Results:
No unused imports are left in the examples anymore. There's no change
to any of the running code.
  • Loading branch information
sikevux authored and bondolo committed Jul 20, 2021
1 parent 579306e commit da3ab3e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

import java.io.IOException;
import java.net.URL;
import java.util.Collection;
import javax.annotation.Nullable;

public interface FeaturesFinder extends Iterable<Feature> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,11 @@

import org.glassfish.jersey.media.multipart.MultiPartFeature;

import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import javax.ws.rs.core.Application;

import static java.util.Arrays.asList;
import static java.util.Collections.singleton;

/**
* JAX-RS Hello World {@link Application}.
Expand Down

0 comments on commit da3ab3e

Please sign in to comment.