Remove debug messages

This commit is contained in:
boy0001 2014-12-23 03:06:41 +11:00
parent 2dff41fa53
commit 8a95231587

View File

@ -307,7 +307,6 @@ public class SQLManager implements AbstractDB {
stmt.setInt(2, plot.id.y);
stmt.setString(3, plot.owner.toString());
stmt.setString(4, plot.world);
System.out.print("STMT: "+stmt.toString());
stmt.executeUpdate();
stmt.close();
} catch (final Exception e) {
@ -330,14 +329,12 @@ public class SQLManager implements AbstractDB {
stmt.setInt(2, plot.id.y);
stmt.setString(3, plot.owner.toString());
stmt.setString(4, plot.world);
System.out.print("STMT: "+stmt.toString());
stmt.executeUpdate();
stmt.close();
int id = getId(plot.world, plot.id);
stmt = SQLManager.this.connection.prepareStatement("INSERT INTO `" + SQLManager.this.prefix + "plot_settings`(`plot_plot_id`) VALUES(" + "?)");
stmt.setInt(1, id);
System.out.print("STMT: "+stmt.toString());
stmt.executeUpdate();
stmt.close();
} catch (final Exception e) {
@ -441,7 +438,6 @@ public class SQLManager implements AbstractDB {
try {
stmt = SQLManager.this.connection.prepareStatement("INSERT INTO `" + SQLManager.this.prefix + "plot_settings`(`plot_plot_id`) VALUES(" + "?)");
stmt.setInt(1, id);
System.out.print("STMT: "+stmt.toString());
stmt.executeUpdate();
stmt.close();
} catch (final SQLException e) {