如何关闭Arrays.stream?

时间:2017-10-11 14:17:16

标签: java spring spring-boot sonarqube

我在Springboot应用程序中有这些行。

String[] profiles = environment.getActiveProfiles();

if (Arrays.stream(profiles).anyMatch(profil->"dev".equalsIgnoreCase(profil))) {
        return "login";
}

我使用Sonarqube来跟踪错误,它告诉我:

'关闭此“流”。 Bug Blocker'

我想知道这是否是误报,为什么?

0 个答案:

没有答案