Skip to content

Commit

Permalink
Make getApiUris() private in RemoteResourceServiceImpl
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed Aug 24, 2023
1 parent ef34305 commit 863a301
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ private URI getApiUri( URI remoteHost, boolean authenticate ) throws UnknownRemo
return prepareApiUri( apiUri, authenticate );
}

public List<URI> getApiUris( boolean authenticate ) {
private List<URI> getApiUris( boolean authenticate ) {
return Arrays.stream( applicationSettings.getIsearch().getApis() )
.map( apiUri -> prepareApiUri( apiUri, authenticate ) )
.collect( Collectors.toList() );
Expand Down

0 comments on commit 863a301

Please sign in to comment.