File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
runtime/admin/src/main/java/org/apache/polaris/admintool Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -100,13 +100,13 @@ static class SchemaInputOptions {
100100 public Integer call () {
101101 try {
102102 RootCredentialsSet rootCredentialsSet ;
103- List <String > realms ; // TODO Iterable
103+ Iterable <String > realms ;
104104
105105 if (inputOptions .rootCredentialsOptions .fileOptions != null ) {
106106 rootCredentialsSet =
107107 RootCredentialsSet .fromUri (
108108 inputOptions .rootCredentialsOptions .fileOptions .file .toUri ());
109- realms = rootCredentialsSet .credentials ().keySet (). stream (). toList () ;
109+ realms = rootCredentialsSet .credentials ().keySet ();
110110 } else {
111111 realms = inputOptions .rootCredentialsOptions .stdinOptions .realms ;
112112 rootCredentialsSet =
You can’t perform that action at this time.
0 commit comments