You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/11/21 17:22:01 UTC

[commons-dbcp] branch master updated: Remove useless return.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git


The following commit(s) were added to refs/heads/master by this push:
     new de31bd7  Remove useless return.
de31bd7 is described below

commit de31bd73005a74541e24a2fa66ce7f6d1c6aafdb
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 21 12:21:57 2020 -0500

    Remove useless return.
---
 .../org/apache/commons/dbcp2/managed/TestManagedDataSourceInTx.java    | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/dbcp2/managed/TestManagedDataSourceInTx.java b/src/test/java/org/apache/commons/dbcp2/managed/TestManagedDataSourceInTx.java
index 24a7367..0cdd7a0 100644
--- a/src/test/java/org/apache/commons/dbcp2/managed/TestManagedDataSourceInTx.java
+++ b/src/test/java/org/apache/commons/dbcp2/managed/TestManagedDataSourceInTx.java
@@ -435,7 +435,6 @@ public class TestManagedDataSourceInTx extends TestManagedDataSource {
     @Override
     @Test
     public void testConnectionReturnOnCommit() throws Exception {
-         // override with no-op test
-         return;
+       // override with no-op test
     }
 }