Fixed ant again ...

This commit is contained in:
Robin Kupper
2011-09-25 12:09:19 +02:00
parent 8b6c726280
commit 4c46e16ad4
2 changed files with 13 additions and 8 deletions

View File

@@ -3,8 +3,8 @@
<target name="logblock"> <target name="logblock">
<mkdir dir="lib/"/> <mkdir dir="lib/"/>
<mkdir dir="bin/"/> <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-Bukkit/lastStableBuild/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/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://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"/> <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> <unzip src="WorldEdit.zip" dest="lib/"><patternset><include name="WorldEdit.jar"/></patternset></unzip>

View File

@@ -372,22 +372,27 @@ public class MySQLConnectionPool implements Closeable
return conn.unwrap(iface); return conn.unwrap(iface);
} }
@SuppressWarnings("unused")
public int getNetworkTimeout() throws SQLException { public int getNetworkTimeout() throws SQLException {
return networkTimeout; return networkTimeout;
} }
@SuppressWarnings("unused")
public void setNetworkTimeout(Executor exec, int timeout) throws SQLException { public void setNetworkTimeout(Executor exec, int timeout) throws SQLException {
networkTimeout = timeout; networkTimeout = timeout;
} }
@SuppressWarnings("unused")
public void abort(Executor exec) throws SQLException { public void abort(Executor exec) throws SQLException {
// Not implemented really... // Not implemented really...
} }
@SuppressWarnings("unused")
public String getSchema() throws SQLException { public String getSchema() throws SQLException {
return schema; return schema;
} }
@SuppressWarnings("unused")
public void setSchema(String str) throws SQLException { public void setSchema(String str) throws SQLException {
schema = str; schema = str;
} }