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 2021/08/20 20:17:02 UTC

[commons-dbcp] branch master updated: Format nits.

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 945dd07  Format nits.
945dd07 is described below

commit 945dd07d4a97d15d9d189d2a7e73039c0ff5110c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Aug 20 16:17:00 2021 -0400

    Format nits.
---
 .../java/org/apache/commons/dbcp2/managed/TestTransactionContext.java   | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/test/java/org/apache/commons/dbcp2/managed/TestTransactionContext.java b/src/test/java/org/apache/commons/dbcp2/managed/TestTransactionContext.java
index 5a4881d..74dc84a 100644
--- a/src/test/java/org/apache/commons/dbcp2/managed/TestTransactionContext.java
+++ b/src/test/java/org/apache/commons/dbcp2/managed/TestTransactionContext.java
@@ -37,9 +37,11 @@ public class TestTransactionContext {
      * Transaction that always fails enlistResource.
      */
     private static class UncooperativeTransaction extends TransactionImpl {
+        
         public UncooperativeTransaction() {
             super(null, null);
         }
+        
         @Override
         public synchronized boolean enlistResource(final XAResource xaRes) {
             return false;