aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/python
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/python')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/python/PyCommon.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/python/PyCommon.java b/src/main/java/com/google/devtools/build/lib/rules/python/PyCommon.java
index d03f380e9d..ab3f3210f3 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/python/PyCommon.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/python/PyCommon.java
@@ -448,12 +448,6 @@ public final class PyCommon {
public Artifact getExecutable() {
return executable;
}
- /** @return An artifact next to the executable file with ".zip" suffix */
- public Artifact getPythonZipArtifact() {
- PathFragment original = executable.getRootRelativePath();
- return ruleContext.getDerivedArtifact(
- original.replaceName(original.getBaseName() + ".zip"), executable.getRoot());
- }
public Map<PathFragment, Artifact> getConvertedFiles() {
return convertedFiles;