public synchronized void close()

in src/main/java/com/uber/uberscriptquery/jdbc/JdbcConnectionProvider.java [63:72]


    public synchronized void close() {
        if (connection != null) {
            try {
                connection.close();
                connection = null;
            } catch (SQLException e) {
                LOG.warn("Failed to close jdbc connection: " + jdbcConnectionString, e);
            }
        }
    }