Skip to content

Commit

Permalink
Remove some escaping from Javadoc that shouldn't be needed with newer…
Browse files Browse the repository at this point in the history
… compilers.

PiperOrigin-RevId: 563709245
  • Loading branch information
graememorgan authored and Error Prone Team committed Sep 8, 2023
1 parent 6ca3f0a commit 5c5ec33
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
*
* <pre>{@code
* public class C {
* \@CompileTimeConstant final String S;
* @CompileTimeConstant final String S;
* public C(@CompileTimeConstant String s) {
* this.S = s;
* }
Expand All @@ -103,7 +103,7 @@
*
* <pre>{@code
* public class C {
* \@CompileTimeConstant String S;
* @CompileTimeConstant String S;
* public C(@CompileTimeConstant String s) {
* this.S = s;
* }
Expand All @@ -116,7 +116,7 @@
*
* <pre>{@code
* public class C {
* \@CompileTimeConstant final String S;
* @CompileTimeConstant final String S;
* public C(String s) {
* this.S = s;
* }
Expand Down

0 comments on commit 5c5ec33

Please sign in to comment.