From 4c46e16ad4a926c322c6c9401184fb2ebc396953 Mon Sep 17 00:00:00 2001 From: Robin Kupper Date: Sun, 25 Sep 2011 12:09:19 +0200 Subject: [PATCH] Fixed ant again ... --- build.xml | 4 ++-- src/de/diddiz/util/MySQLConnectionPool.java | 17 +++++++++++------ 2 files changed, 13 insertions(+), 8 deletions(-) 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; }