Skip to content

Commit

Permalink
Remove unused code from IntermediateArtifacts prior to starlarkificat…
Browse files Browse the repository at this point in the history
…ion.

PiperOrigin-RevId: 676886387
Change-Id: Iec529fb2d8b38577a9d6f626855e141813ef3533
  • Loading branch information
pzembrod authored and copybara-github committed Sep 20, 2024
1 parent 03f3b25 commit 9ee1a0f
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,21 +171,6 @@ public Artifact archiveForStarlark(StarlarkThread thread) throws EvalException {
return archive();
}

/** Representation for a specific architecture. */
private Artifact architectureRepresentation(String arch, String suffix) {
return appendExtension(String.format("_%s%s", arch, suffix));
}

/** Linkmap representation */
public Artifact linkmap() {
return appendExtension(LINKMAP_SUFFIX);
}

/** Linkmap representation for a specific architecture. */
public Artifact linkmap(String arch) {
return architectureRepresentation(arch, LINKMAP_SUFFIX);
}

private String getModuleName() {
String moduleName;
if (ruleContext.attributes().isAttributeValueExplicitlySpecified("module_name")) {
Expand Down

0 comments on commit 9ee1a0f

Please sign in to comment.