forked from LogBlock/LogBlock
Fixed ant again ...
This commit is contained in:
@@ -3,8 +3,8 @@
|
||||
<target name="logblock">
|
||||
<mkdir dir="lib/"/>
|
||||
<mkdir dir="bin/"/>
|
||||
<get src="http://ci.bukkit.org/job/dev-Bukkit/Recommended/artifact/target/bukkit-0.0.1-SNAPSHOT.jar" dest="lib/bukkit.jar"/>
|
||||
<get src="http://ci.bukkit.org/job/dev-CraftBukkit/promotion/latest/Recommended/artifact/target/craftbukkit-0.0.1-SNAPSHOT.jar" dest="lib/craftbukkit.jar"/>
|
||||
<get src="http://ci.bukkit.org/job/dev-Bukkit/lastStableBuild/artifact/target/bukkit-0.0.1-SNAPSHOT.jar" dest="lib/bukkit.jar"/>
|
||||
<get src="http://ci.bukkit.org/job/dev-Bukkit/lastStableBuild/artifact/target/craftbukkit-0.0.1-SNAPSHOT.jar" dest="lib/craftbukkit.jar"/>
|
||||
<get src="http://www.theyeticave.net/downloads/permissions/3.1.6/Permissions.jar" dest="lib/Permissions.jar"/>
|
||||
<get src="http://cloud.github.com/downloads/sk89q/worldedit/worldedit-4.6.zip" dest="WorldEdit.zip"/>
|
||||
<unzip src="WorldEdit.zip" dest="lib/"><patternset><include name="WorldEdit.jar"/></patternset></unzip>
|
||||
|
@@ -371,23 +371,28 @@ public class MySQLConnectionPool implements Closeable
|
||||
public <T> T unwrap(Class<T> iface) throws SQLException {
|
||||
return conn.unwrap(iface);
|
||||
}
|
||||
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public int getNetworkTimeout() throws SQLException {
|
||||
return networkTimeout;
|
||||
}
|
||||
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public void setNetworkTimeout(Executor exec, int timeout) throws SQLException {
|
||||
networkTimeout = timeout;
|
||||
}
|
||||
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public void abort(Executor exec) throws SQLException {
|
||||
//Not implemented really...
|
||||
// Not implemented really...
|
||||
}
|
||||
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public String getSchema() throws SQLException {
|
||||
return schema;
|
||||
}
|
||||
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public void setSchema(String str) throws SQLException {
|
||||
schema = str;
|
||||
}
|
||||
|
Reference in New Issue
Block a user