diff options
author | Shigeru Chiba <chibash@users.noreply.github.com> | 2019-02-12 22:23:50 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-12 22:23:50 +0900 |
commit | eff2f4bbd0246476edfa43782f38e58ddedef952 (patch) | |
tree | 2e7a3c5351fbdc9c4169537b50fa0df1c12534a8 | |
parent | f36195c1451c79b9d46618716cf4efe9904afb32 (diff) | |
parent | f8ee3eb84ed9e3e7bcd7e1c5da74d898440776ab (diff) | |
download | javassist-eff2f4bbd0246476edfa43782f38e58ddedef952.tar.gz javassist-eff2f4bbd0246476edfa43782f38e58ddedef952.zip |
Merge pull request #247 from NingZhang-e/issue246
Clean Java doc to fix #246
-rw-r--r-- | src/main/javassist/ClassPool.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/main/javassist/ClassPool.java b/src/main/javassist/ClassPool.java index 37f2acbd..7d8cde08 100644 --- a/src/main/javassist/ClassPool.java +++ b/src/main/javassist/ClassPool.java @@ -1246,11 +1246,7 @@ public class ClassPool { * <code>getPackage()</code> on the <code>Class</code> object returned * by <code>toClass()</code> will return a non-null object.</p> * - * <p>The jigsaw module introduced by Java 9 has broken this method. - * In Java 9 or later, the VM argument - * <code>--add-opens java.base/java.lang=ALL-UNNAMED</code> - * has to be given to the JVM so that this method can run. - * </p> + * <p>The jigsaw module introduced by Java 9 has broken this method.</p> * * @param loader the class loader passed to <code>toClass()</code> or * the default one obtained by <code>getClassLoader()</code>. |