This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/commons-xml.git
The following commit(s) were added to refs/heads/main by this push:
new 97c7bae Make class final.
97c7bae is described below
commit 97c7bae2161ee4cc75f0d0d422397520f6458db2
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Aug 28 17:04:29 2026 -0400
Make class final.
---
src/main/java/org/apache/commons/xml/MethodHandleFactory.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/xml/MethodHandleFactory.java
b/src/main/java/org/apache/commons/xml/MethodHandleFactory.java
index 9418b60..671819d 100644
--- a/src/main/java/org/apache/commons/xml/MethodHandleFactory.java
+++ b/src/main/java/org/apache/commons/xml/MethodHandleFactory.java
@@ -24,7 +24,7 @@
/**
* MethodHandle utility.
*/
-class MethodHandleFactory {
+final class MethodHandleFactory {
@FunctionalInterface
interface ThrowableCallable<V> {