Skip to content

Commit

Permalink
Issue #91: Fix comment in jdk-internal bundled signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
uschindler committed Dec 25, 2015
1 parent 727db66 commit 7dd7764
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# It is provided here for reference, but can easily regenerated by executing from the source folder of forbidden-apis:
# $ ant generate-internal

# This file contains all public, deprecated API signatures in Java version 1.6 (extracted from build 1.6.0_32).
# This file contains all internal packages listed in Security.getProperty("package.access") of Java version 1.6 (extracted from build 1.6.0_32).

@defaultMessage non-public internal runtime class in Java 1.6

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# It is provided here for reference, but can easily regenerated by executing from the source folder of forbidden-apis:
# $ ant generate-internal

# This file contains all public, deprecated API signatures in Java version 1.7 (extracted from build 1.7.0_80).
# This file contains all internal packages listed in Security.getProperty("package.access") of Java version 1.7 (extracted from build 1.7.0_80).

@defaultMessage non-public internal runtime class in Java 1.7

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# It is provided here for reference, but can easily regenerated by executing from the source folder of forbidden-apis:
# $ ant generate-internal

# This file contains all public, deprecated API signatures in Java version 1.8 (extracted from build 1.8.0_60).
# This file contains all internal packages listed in Security.getProperty("package.access") of Java version 1.8 (extracted from build 1.8.0_60).

@defaultMessage non-public internal runtime class in Java 1.8

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# It is provided here for reference, but can easily regenerated by executing from the source folder of forbidden-apis:
# $ ant generate-internal

# This file contains all public, deprecated API signatures in Java version 1.9 (extracted from build 1.9.0-ea).
# This file contains all internal packages listed in Security.getProperty("package.access") of Java version 1.9 (extracted from build 1.9.0-ea).

@defaultMessage non-public internal runtime class in Java 1.9

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public final class InternalApiGen {
.append("# It is provided here for reference, but can easily regenerated by executing from the source folder of forbidden-apis:").append(NL)
.append("# $ ant generate-internal").append(NL)
.append(NL)
.append("# This file contains all public, deprecated API signatures in Java version ").append(javaVersion)
.append("# This file contains all internal packages listed in Security.getProperty(\"package.access\") of Java version ").append(javaVersion)
.append(" (extracted from build ").append(System.getProperty("java.version")).append(").").append(NL)
.append(NL)
.append("@defaultMessage non-public internal runtime class in Java ").append(javaVersion).append(NL)
Expand Down

0 comments on commit 7dd7764

Please sign in to comment.