8209003: Consolidate use of empty collections in java.lang.module

Reviewed-by: alanb, mchung
This commit is contained in:
Claes Redestad 2018-08-07 23:08:52 +02:00
parent 3be8d256e9
commit db4913ba5a
14 changed files with 76 additions and 122 deletions

View file

@ -306,7 +306,7 @@ public interface ModuleFinder {
@Override
public Set<ModuleReference> findAll() {
return Collections.emptySet();
return Set.of();
}
};
}