Skip to content

Commit

Permalink
removed unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
lilgreenbird committed Jun 10, 2019
1 parent cc44603 commit 1fa9143
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -409,12 +409,4 @@ private void verifyDatabase(Connection con, String databaseName) throws SQLExcep
}
}
}

static String extractPort(String server, SQLServerDataSource ds) {
if (server.contains(":")) {
ds.setPortNumber(Integer.parseInt(server.substring(server.indexOf(":") + 1)));
server = server.substring(0, server.indexOf(":"));
}
return server;
}
}

0 comments on commit 1fa9143

Please sign in to comment.