File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed 
indra-git/src/main/java/net/kyori/indra/git/internal Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 2626import  java .io .File ;
2727import  java .io .IOException ;
2828import  java .util .List ;
29+ import  java .util .stream .Collectors ;
2930import  javax .inject .Inject ;
3031import  net .kyori .indra .git .IndraGitExtension ;
3132import  net .kyori .indra .git .QueryBranch ;
@@ -133,7 +134,7 @@ public static abstract class QueryDescribe extends RepositoryValueSource.Paramet
133134  @ Override 
134135  public  @ NotNull  Provider <List <String >> tagNames () {
135136    return  this .repositoryValue (QueryTags .Names .class )
136-       .map (list  -> list .stream ().map (Repository ::shortenRefName ).toList ());
137+       .map (list  -> list .stream ().map (Repository ::shortenRefName ).collect ( Collectors . toList () ));
137138  }
138139
139140  @ Override 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments