mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-26 07:06:44 +01:00
Remove debug messages
This commit is contained in:
parent
2dff41fa53
commit
8a95231587
@ -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 New Issue
Block a user