diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/SQLManager.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/SQLManager.java index ecbe5e264..48e752280 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/SQLManager.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/SQLManager.java @@ -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) {