Eliminate some String.format() calls. Left one I like for readability.

pull/307/head
Brett Wooldridge 10 years ago
parent 779770c2c8
commit 06996380b5

@ -45,7 +45,7 @@ final class ClosedConnection
return Boolean.FALSE;
}
else if ("toString".equals(methodName)) {
return this.getClass().getCanonicalName();
return ClosedConnection.class.getCanonicalName();
}
throw new SQLException("Connection is closed");

Loading…
Cancel
Save