Skip to content

Commit

Permalink
Revert "Fix compiling errors"
Browse files Browse the repository at this point in the history
This reverts commit 6a138a6.
  • Loading branch information
larsrc-google committed Jul 30, 2021
1 parent 92ec798 commit ce091ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Expand Up @@ -398,7 +398,8 @@ public ActionExecutionContext withMetadataHandler(MetadataHandler metadataHandle
env,
actionFileSystem,
skyframeDepsResult,
nestedSetExpander);
nestedSetExpander,
syscalls);
}

/**
Expand Down
Expand Up @@ -359,6 +359,11 @@ public ImmutableSet<TreeFileArtifact> getTreeArtifactChildren(SpecialArtifact tr
return metadataHandler.getTreeArtifactChildren(treeArtifact);
}

@Override
public TreeArtifactValue getTreeArtifactValue(SpecialArtifact treeArtifact) throws IOException {
return metadataHandler.getTreeArtifactValue(treeArtifact);
}

@Override
public void markOmitted(Artifact output) {
metadataHandler.markOmitted(output);
Expand Down

0 comments on commit ce091ab

Please sign in to comment.