diff --git a/build.xml b/build.xml index 91d8f0f..53f4d03 100644 --- a/build.xml +++ b/build.xml @@ -3,8 +3,8 @@ - - + + diff --git a/src/de/diddiz/util/MySQLConnectionPool.java b/src/de/diddiz/util/MySQLConnectionPool.java index f80ec48..962b057 100644 --- a/src/de/diddiz/util/MySQLConnectionPool.java +++ b/src/de/diddiz/util/MySQLConnectionPool.java @@ -371,23 +371,28 @@ public class MySQLConnectionPool implements Closeable public T unwrap(Class 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; }