我们使用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);
有帮助吗?
谢谢