Skip to content

Commit e9d71d6

Browse files
committed
Remove unused method
1 parent a42d474 commit e9d71d6

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

junit-platform-launcher/src/main/java/org/junit/platform/launcher/core/LauncherConfigurationParameters.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,6 @@ private interface ParameterProvider {
155155
@Nullable
156156
String getValue(String key);
157157

158-
default int size() {
159-
return 0;
160-
}
161-
162158
Set<String> keySet();
163159

164160
static ParameterProvider explicit(Map<String, String> configParams) {
@@ -168,11 +164,6 @@ static ParameterProvider explicit(Map<String, String> configParams) {
168164
return configParams.get(key);
169165
}
170166

171-
@Override
172-
public int size() {
173-
return configParams.size();
174-
}
175-
176167
@Override
177168
public Set<String> keySet() {
178169
return configParams.keySet();

0 commit comments

Comments
 (0)