diff --git a/api/latest/com/google/errorprone/annotations/CompileTimeConstant.html b/api/latest/com/google/errorprone/annotations/CompileTimeConstant.html index 45e079f73a3..6d0f83f7268 100644 --- a/api/latest/com/google/errorprone/annotations/CompileTimeConstant.html +++ b/api/latest/com/google/errorprone/annotations/CompileTimeConstant.html @@ -132,7 +132,7 @@

Annotation Type Co

  public class C {
-   \@CompileTimeConstant final String S;
+   @CompileTimeConstant final String S;
    public C(@CompileTimeConstant String s) {
      this.S = s;
    }
@@ -147,7 +147,7 @@ 

Annotation Type Co

  public class C {
-   \@CompileTimeConstant String S;
+   @CompileTimeConstant String S;
    public C(@CompileTimeConstant String s) {
      this.S = s;
    }
@@ -160,7 +160,7 @@ 

Annotation Type Co

  public class C {
-   \@CompileTimeConstant final String S;
+   @CompileTimeConstant final String S;
    public C(String s) {
      this.S = s;
    }