Remove untrue @VisibleForTesting annotation on InMemoryNodeEntry#dirtyBuildingState, incorrect even when it was introduced in unknown commit.
PiperOrigin-RevId: 228428203
diff --git a/src/main/java/com/google/devtools/build/skyframe/InMemoryNodeEntry.java b/src/main/java/com/google/devtools/build/skyframe/InMemoryNodeEntry.java
index bd453ca3..9c43cb6 100644
--- a/src/main/java/com/google/devtools/build/skyframe/InMemoryNodeEntry.java
+++ b/src/main/java/com/google/devtools/build/skyframe/InMemoryNodeEntry.java
@@ -13,7 +13,6 @@
// limitations under the License.
package com.google.devtools.build.skyframe;
-import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.MoreObjects;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableList;
@@ -141,7 +140,7 @@
* Object encapsulating dirty state of the object between when it is marked dirty and
* re-evaluated.
*/
- @VisibleForTesting @Nullable protected volatile DirtyBuildingState dirtyBuildingState = null;
+ @Nullable protected volatile DirtyBuildingState dirtyBuildingState = null;
private static final int NOT_EVALUATING_SENTINEL = -1;