Skip to content

Commit 6a138a6

Browse files
committed
Fix compiling errors
1 parent de2e3a0 commit 6a138a6

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

src/main/java/com/google/devtools/build/lib/actions/ActionExecutionContext.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -398,8 +398,7 @@ public ActionExecutionContext withMetadataHandler(MetadataHandler metadataHandle
398398
env,
399399
actionFileSystem,
400400
skyframeDepsResult,
401-
nestedSetExpander,
402-
syscalls);
401+
nestedSetExpander);
403402
}
404403

405404
/**

src/main/java/com/google/devtools/build/lib/exec/StandaloneTestStrategy.java

-5
Original file line numberDiff line numberDiff line change
@@ -359,11 +359,6 @@ public ImmutableSet<TreeFileArtifact> getTreeArtifactChildren(SpecialArtifact tr
359359
return metadataHandler.getTreeArtifactChildren(treeArtifact);
360360
}
361361

362-
@Override
363-
public TreeArtifactValue getTreeArtifactValue(SpecialArtifact treeArtifact) throws IOException {
364-
return metadataHandler.getTreeArtifactValue(treeArtifact);
365-
}
366-
367362
@Override
368363
public void markOmitted(Artifact output) {
369364
metadataHandler.markOmitted(output);

0 commit comments

Comments
 (0)