This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/master by this push:
new 245d5de SpotBugs: finalize() should be protected
245d5de is described below
commit 245d5de49f3f9fb9c89d49da43b3f400f19a6934
Author: Mark Thomas <[email protected]>
AuthorDate: Tue Feb 26 21:12:33 2019 +0000
SpotBugs: finalize() should be protected
Fix a minor SpotBugs issue to trigger a CI build as part of testing the
svn -> git migration
---
java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java
b/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java
index d45bb28..f2c799c 100644
--- a/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java
+++ b/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java
@@ -385,7 +385,7 @@ public abstract class AbstractReplicatedMap<K,V>
}
@Override
- public void finalize() throws Throwable {
+ protected void finalize() throws Throwable {
try {
breakdown();
} finally {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]