diff --git a/src/main/docs/bundled-signatures.html b/src/main/docs/bundled-signatures.html
index 0b3ba0f..b7a9a3c 100644
--- a/src/main/docs/bundled-signatures.html
+++ b/src/main/docs/bundled-signatures.html
@@ -29,14 +29,14 @@
Bundled Signatures Documentation
jdk-unsafe-*: Signatures
of "unsafe" methods that use default charset, default locale, or default timezone. For server applications it is very
stupid to call those methods, as the results will definitely not what the user wants
-(for Java * = 1.7, 1.8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18; Ant / Maven / Gradle automatically add the compile Java version).
+(for Java * = 1.7, 1.8, 9,..., 18; Ant / Maven / Gradle automatically add the compile Java version).
jdk-deprecated-*: This disallows all deprecated
-methods from the JDK (for Java * = 1.7, 1.8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18; Ant / Maven / Gradle automatically add the compile Java version).
+methods from the JDK (for Java * = 1.7, 1.8, 9,..., 18; Ant / Maven / Gradle automatically add the compile Java version).
jdk-internal-*: Lists all internal packages of the JDK as of Security.getProperty("package.access")
.
Calling those methods will always trigger security manager and is completely forbidden from Java 9 on
-(for Java * = 1.7, 1.8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18; Ant / Maven / Gradle automatically add the compile Java version, since forbiddenapis v2.1).
+(for Java * = 1.7, 1.8, 9,..., 18; Ant / Maven / Gradle automatically add the compile Java version, since forbiddenapis v2.1).
jdk-non-portable: Signatures of all non-portable (like com.sun.management.HotSpotDiagnosticMXBean
)
or internal runtime APIs (like sun.misc.Unsafe
). This is a superset of jdk-internal.