Skip to content

Commit

Permalink
Remove unused imports from ExternalProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
rbygrave committed Jul 19, 2024
1 parent 5065124 commit 4102421
Showing 1 changed file with 2 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,6 @@
import static java.util.Map.entry;
import static java.util.stream.Collectors.toList;

import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import javax.lang.model.element.TypeElement;
import javax.lang.model.util.ElementFilter;
import io.avaje.inject.spi.AvajeModule;
import io.avaje.inject.spi.InjectPlugin;


/**
* The types provided by other modules in the classpath at compile time.
Expand All @@ -47,7 +37,8 @@ final class ExternalProvider {
entry("io.avaje.validation.http.HttpValidatorProvider", of("io.avaje.http.api.Validator")));
private static final List<MetaData> externalMeta = new ArrayList<>();

private ExternalProvider() {}
private ExternalProvider() {
}

private static boolean moduleCP() {
try {
Expand Down

0 comments on commit 4102421

Please sign in to comment.