Fix spelling errors

This commit is contained in:
unknown
2012-03-18 18:12:28 -05:00
parent 86a55d5b17
commit 20a989362a

View File

@@ -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());
}
}
}