Fix compile issues due to merge

This commit is contained in:
Rsl1122 2017-08-09 18:49:43 +03:00
parent afd2d3fb0a
commit b9629ccee4
2 changed files with 1 additions and 2 deletions

View File

@ -117,7 +117,7 @@ public class TPSTable extends Table {
* @param data
* @throws SQLException
*/
public void saveTPSData(List<TPS> data) {
public void saveTPSData(List<TPS> data) throws SQLException {
List<List<TPS>> batches = DBUtils.splitIntoBatches(data);
batches.forEach(batch -> {
try {

View File

@ -43,7 +43,6 @@ public class WebServer {
private final int port;
private boolean enabled = false;
private HttpServer server;
private final int port;
private boolean usingHttps = false;