Repository: commons-dbcp
Updated Branches:
  refs/heads/master b383b9c38 -> f2e00c045


Line length 120.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/f2e00c04
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/f2e00c04
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/f2e00c04

Branch: refs/heads/master
Commit: f2e00c0453b286f77872b716acfc3ed75467b159
Parents: b383b9c
Author: Gary Gregory <garydgreg...@gmail.com>
Authored: Sun Jun 17 08:53:12 2018 -0600
Committer: Gary Gregory <garydgreg...@gmail.com>
Committed: Sun Jun 17 08:53:12 2018 -0600

----------------------------------------------------------------------
 .../commons/dbcp2/TesterPreparedStatement.java  | 39 ++++++++++----------
 1 file changed, 19 insertions(+), 20 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/f2e00c04/src/test/java/org/apache/commons/dbcp2/TesterPreparedStatement.java
----------------------------------------------------------------------
diff --git 
a/src/test/java/org/apache/commons/dbcp2/TesterPreparedStatement.java 
b/src/test/java/org/apache/commons/dbcp2/TesterPreparedStatement.java
index 15d0ea0..814797b 100644
--- a/src/test/java/org/apache/commons/dbcp2/TesterPreparedStatement.java
+++ b/src/test/java/org/apache/commons/dbcp2/TesterPreparedStatement.java
@@ -353,44 +353,43 @@ public class TesterPreparedStatement extends 
TesterStatement implements Prepared
     }
 
     @Override
-    public int executeUpdate(final String sql, final int autoGeneratedKeys)
-        throws SQLException {
-        checkOpen(); return 0;
+    public int executeUpdate(final String sql, final int autoGeneratedKeys) 
throws SQLException {
+        checkOpen();
+        return 0;
     }
 
     @Override
-    public int executeUpdate(final String sql, final int columnIndexes[])
-        throws SQLException {
-        checkOpen(); return 0;
+    public int executeUpdate(final String sql, final int columnIndexes[]) 
throws SQLException {
+        checkOpen();
+        return 0;
     }
 
     @Override
-    public int executeUpdate(final String sql, final String columnNames[])
-        throws SQLException {
-        checkOpen(); return 0;
+    public int executeUpdate(final String sql, final String columnNames[]) 
throws SQLException {
+        checkOpen();
+        return 0;
     }
 
     @Override
-    public boolean execute(final String sql, final int autoGeneratedKeys)
-        throws SQLException {
-        checkOpen(); return true;
+    public boolean execute(final String sql, final int autoGeneratedKeys) 
throws SQLException {
+        checkOpen();
+        return true;
     }
 
     @Override
-    public boolean execute(final String sl, final int columnIndexes[])
-        throws SQLException {
-        checkOpen(); return true;
+    public boolean execute(final String sl, final int columnIndexes[]) throws 
SQLException {
+        checkOpen();
+        return true;
     }
 
     @Override
-    public boolean execute(final String sql, final String columnNames[])
-        throws SQLException {
-        checkOpen(); return true;
+    public boolean execute(final String sql, final String columnNames[]) 
throws SQLException {
+        checkOpen();
+        return true;
     }
 
     @Override
-    public void setURL(final int parameterIndex, final java.net.URL x)
-        throws SQLException {
+    public void setURL(final int parameterIndex, final java.net.URL x) throws 
SQLException {
         throw new SQLException("Not implemented.");
     }
 

Reply via email to