声纳的“关闭资源”违反了不使用空参数trigerred(鱿鱼:S2095)

时间:2019-01-31 10:59:34

标签: java sonarqube sonarlint

我们使用SonarQube社区版7.2.1版(版本14109)

我希望SonarQube报告“实例应关闭资源” squid:S2095问题,实例化带有空参数:

// TEST 1: issue raised
TestCloseableImpl test1 = new TestCloseableImpl("test", "test");
// TEST 2: not raised
TestCloseableImpl test2 = new TestCloseableImpl("test", null);
// TEST 3: raised
TestCloseableImpl test3 = new TestCloseableImpl("test");
// TEST 4: not raised
TestCloseableImpl test4 = new TestCloseableImpl(null);

有帮助吗?

谢谢

0 个答案:

没有答案