mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-18 00:20:44 +00:00
Fix spelling errors
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.untamedears.Citadel;
|
||||
|
||||
import java.sql.PreparedStatement;
|
||||
import java.sql.SQLException;
|
||||
|
||||
public class DelayedReinforcement implements Runnable
|
||||
{
|
||||
private PreparedStatement addReinforcedBlockStatement;
|
||||
|
||||
public DelayedReinforcement(PreparedStatement ps)
|
||||
{
|
||||
this.addReinforcedBlockStatement = ps;
|
||||
}
|
||||
|
||||
public void run()
|
||||
{
|
||||
try
|
||||
{
|
||||
this.addReinforcedBlockStatement.execute();
|
||||
this.addReinforcedBlockStatement.close();
|
||||
} catch (SQLException e) {
|
||||
System.err.println("Error in protecting block. Details:");
|
||||
System.err.println(e.toString());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user