Browse Source

!146 The 'filter().findAny().isPresent()' chain can be replaced with 'anyMatch()'
Merge pull request !146 from runphp/N/A

若依 3 years ago
parent
commit
9c122a4bfe

+ 1 - 1
ruoyi-gateway/src/main/java/com/ruoyi/gateway/filter/BlackListUrlFilter.java

@@ -44,7 +44,7 @@ public class BlackListUrlFilter extends AbstractGatewayFilterFactory<BlackListUr
 
         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()