aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/actions/Artifact.java
diff options
context:
space:
mode:
authorGravatar felly <felly@google.com>2018-08-14 09:26:34 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-08-14 09:29:35 -0700
commit37bd5f665aa614c6dc640c9d19852dd8d5efb0d8 (patch)
tree060850dcccf444801caeb19a3e331c3eb954aeae /src/main/java/com/google/devtools/build/lib/actions/Artifact.java
parent677fa3104485b54d93fc319aa004d8a6f80296a8 (diff)
Automated rollback of commit 3bace1b937934fb2cea6260067ecc1cdbe526847.
*** Reason for rollback *** b/112583337 RELNOTES: None *** Original change description *** Track Fileset in artifact expansion. PiperOrigin-RevId: 208658921
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/actions/Artifact.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/actions/Artifact.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/actions/Artifact.java b/src/main/java/com/google/devtools/build/lib/actions/Artifact.java
index e48740b3a3..49dad3ff38 100644
--- a/src/main/java/com/google/devtools/build/lib/actions/Artifact.java
+++ b/src/main/java/com/google/devtools/build/lib/actions/Artifact.java
@@ -161,15 +161,6 @@ public class Artifact
* Only aggregating middlemen and tree artifacts are expanded.
*/
void expand(Artifact artifact, Collection<? super Artifact> output);
-
- /**
- * Retrieve the expansion of Filesets for the given artifact.
- *
- * @param artifact {@code artifact.isFileset()} must be true.
- */
- default ImmutableList<FilesetOutputSymlink> getFileset(Artifact artifact) {
- throw new UnsupportedOperationException();
- }
}
public static final ImmutableList<Artifact> NO_ARTIFACTS = ImmutableList.of();