mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-12 03:59:22 +00:00
Remove debug messages
This commit is contained in:
parent
2dff41fa53
commit
8a95231587
1 changed files with 0 additions and 4 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue