Skip to content

Commit 82a7cfa

Browse files
committed
Javadoc
cglib is unmaintained and does not work well (or possibly at all?) in newer JDKs, particularly JDK17+; see https://github.com/cglib/cglib
1 parent 9fb8b4c commit 82a7cfa

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/main/java/org/apache/commons/pool2/proxy/CglibProxyHandler.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@
2424
import net.sf.cglib.proxy.MethodProxy;
2525

2626
/**
27+
* cglib is unmaintained and does not work well (or possibly at all?) in newer JDKs, particularly JDK17+; see https://github.com/cglib/cglib
28+
* <p>
2729
* CGLib implementation of the proxy handler.
30+
* </p>
2831
*
2932
* @param <T> type of the wrapped pooled object
3033
*

src/main/java/org/apache/commons/pool2/proxy/CglibProxySource.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
import net.sf.cglib.proxy.Factory;
2323

2424
/**
25+
* cglib is unmaintained and does not work well (or possibly at all?) in newer JDKs, particularly JDK17+; see https://github.com/cglib/cglib
26+
* <p>
2527
* Provides proxy objects using CGLib.
28+
* </p>
2629
*
2730
* @param <T> type of the pooled object to be proxied
2831
*

0 commit comments

Comments
 (0)