0
有了這個代碼:Sonarlint多個關閉
Connection connection = null;
PreparedStatement req = null;
try {
connection = DriverManager.getConnection(url, user, password);
req = connection.prepareStatement(SQL);
} finally {
if (connection != null) {
connection.close();
}
if (req != null) {
req.close();
}
}
SonarLint說:
關閉這個 「PreparedStatement的」 在第5行(
req = ...
)
了 「終於」 條款,當我先關閉req
:
在「終於」條款關閉此「連接」上線4(
connection = ...
)
我怎樣才能讓SonarLint幸福嗎?