Unverified Commit 1f8851b9 authored by iceblue510's avatar iceblue510 Committed by GitHub
Browse files

modify sqlTask (#3152)

parent 0692dca4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -364,7 +364,7 @@ public class SqlTask extends AbstractTask {
                       Connection connection){
        if (resultSet != null){
            try {
                connection.close();
                resultSet.close();
            } catch (SQLException e) {

            }
@@ -372,7 +372,7 @@ public class SqlTask extends AbstractTask {

        if (pstmt != null){
            try {
                connection.close();
                pstmt.close();
            } catch (SQLException e) {

            }