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 0893fcd  Remove in-line comments.
0893fcd is described below

commit 0893fcdf5ea99dd7a69acd944a7003600f9426c1
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Apr 3 07:47:06 2022 -0400

    Remove in-line comments.
    
    TODO Javadoc.
---
 src/main/java/org/apache/commons/dbcp2/PoolableConnectionMXBean.java | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/dbcp2/PoolableConnectionMXBean.java 
b/src/main/java/org/apache/commons/dbcp2/PoolableConnectionMXBean.java
index 857639c..b233650 100644
--- a/src/main/java/org/apache/commons/dbcp2/PoolableConnectionMXBean.java
+++ b/src/main/java/org/apache/commons/dbcp2/PoolableConnectionMXBean.java
@@ -24,14 +24,13 @@ import java.sql.SQLException;
  * @since 2.0
  */
 public interface PoolableConnectionMXBean {
-    // Methods
+
     void clearCachedState();
 
     void clearWarnings() throws SQLException;
 
     void close() throws SQLException;
 
-    // Read-write properties
     boolean getAutoCommit() throws SQLException;
 
     boolean getCacheState();
@@ -42,12 +41,10 @@ public interface PoolableConnectionMXBean {
 
     String getSchema() throws SQLException;
 
-    // SQLWarning getWarnings() throws SQLException;
     String getToString();
 
     int getTransactionIsolation() throws SQLException;
 
-    // Read-only properties
     boolean isClosed() throws SQLException;
 
     boolean isReadOnly() throws SQLException;

Reply via email to