mirror of
https://gitee.com/y_project/RuoYi-Cloud.git
synced 2026-01-26 11:51:55 +08:00
!146 The 'filter().findAny().isPresent()' chain can be replaced with 'anyMatch()'
Merge pull request !146 from runphp/N/A
This commit is contained in:
@@ -44,7 +44,7 @@ public class BlackListUrlFilter extends AbstractGatewayFilterFactory<BlackListUr
|
|||||||
|
|
||||||
public boolean matchBlacklist(String url)
|
public boolean matchBlacklist(String url)
|
||||||
{
|
{
|
||||||
return blacklistUrlPattern.isEmpty() ? false : blacklistUrlPattern.stream().filter(p -> p.matcher(url).find()).findAny().isPresent();
|
return !blacklistUrlPattern.isEmpty() && blacklistUrlPattern.stream().anyMatch(p -> p.matcher(url).find());
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<String> getBlacklistUrl()
|
public List<String> getBlacklistUrl()
|
||||||
|
|||||||
Reference in New Issue
Block a user