Skip to content

Commit

Permalink
Make provider constructors package-private
Browse files Browse the repository at this point in the history
  • Loading branch information
joshka committed Aug 20, 2018
1 parent 48d90bd commit df703b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ public class JsonFileArgumentsProvider implements AnnotationConsumer<JsonFileSou

private String[] resources;

public JsonFileArgumentsProvider() {
JsonFileArgumentsProvider() {
this(Class::getResourceAsStream);
}

public JsonFileArgumentsProvider(BiFunction<Class<?>, String, InputStream> inputStreamProvider) {
JsonFileArgumentsProvider(BiFunction<Class<?>, String, InputStream> inputStreamProvider) {
this.inputStreamProvider = inputStreamProvider;
}

Expand Down

0 comments on commit df703b4

Please sign in to comment.