Delete ActionLookupKeyOrProxy.

This layer of indirection isn't currently used.

PiperOrigin-RevId: 548110996
Change-Id: I58d381456caff4668588304ba7750c4552eebe3a
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/BuildDriverKey.java b/src/main/java/com/google/devtools/build/lib/skyframe/BuildDriverKey.java
index 09239a5..c24971c 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/BuildDriverKey.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/BuildDriverKey.java
@@ -14,7 +14,6 @@
 package com.google.devtools.build.lib.skyframe;
 
 import com.google.devtools.build.lib.actions.ActionLookupKey;
-import com.google.devtools.build.lib.actions.ActionLookupKeyOrProxy;
 import com.google.devtools.build.lib.analysis.TopLevelArtifactContext;
 import com.google.devtools.build.skyframe.CPUHeavySkyKey;
 import com.google.devtools.build.skyframe.SkyFunctionName;
@@ -25,7 +24,7 @@
  * the {@link ActionLookupKey} and executing the associated actions.
  */
 public final class BuildDriverKey implements CPUHeavySkyKey {
-  private final ActionLookupKeyOrProxy actionLookupKey;
+  private final ActionLookupKey actionLookupKey;
   private final TopLevelArtifactContext topLevelArtifactContext;
   private final boolean strictActionConflictCheck;
   private final boolean explicitlyRequested;
@@ -35,7 +34,7 @@
   private final boolean extraActionTopLevelOnly;
 
   private BuildDriverKey(
-      ActionLookupKeyOrProxy actionLookupKey,
+      ActionLookupKey actionLookupKey,
       TopLevelArtifactContext topLevelArtifactContext,
       boolean strictActionConflictCheck,
       boolean explicitlyRequested,
@@ -69,7 +68,7 @@
   }
 
   public static BuildDriverKey ofConfiguredTarget(
-      ActionLookupKeyOrProxy actionLookupKey,
+      ActionLookupKey actionLookupKey,
       TopLevelArtifactContext topLevelArtifactContext,
       boolean strictActionConflictCheck,
       boolean explicitlyRequested,
@@ -89,7 +88,7 @@
     return topLevelArtifactContext;
   }
 
-  public ActionLookupKeyOrProxy getActionLookupKey() {
+  public ActionLookupKey getActionLookupKey() {
     return actionLookupKey;
   }