Skip to content

Commit

Permalink
Remove an unused method from CppCompileAction.
Browse files Browse the repository at this point in the history
--
PiperOrigin-RevId: 149930121
MOS_MIGRATED_REVID=149930121
  • Loading branch information
lberki authored and meteorcloudy committed Mar 14, 2017
1 parent 021e15b commit be1e2e3
Showing 1 changed file with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public Collection<Artifact> getInputsForIncludedFile(
* A string constant for the c++ compilation action.
*/
public static final String CPP_COMPILE = "c++-compile";

/** A string constant for the c++ module compile action. */
public static final String CPP_MODULE_CODEGEN = "c++-module-codegen";

Expand Down Expand Up @@ -376,10 +376,6 @@ public List<Artifact> getBuiltInIncludeFiles() {
return builtinIncludeFiles;
}

public String getHostSystemName() {
return cppConfiguration.getHostSystemName();
}

@Override
public NestedSet<Artifact> getMandatoryInputs() {
return mandatoryInputs;
Expand Down Expand Up @@ -431,7 +427,7 @@ public Iterable<Artifact> discoverInputs(ActionExecutionContext actionExecutionC
throws ActionExecutionException, InterruptedException {
Executor executor = actionExecutionContext.getExecutor();
Iterable<Artifact> initialResult;

actionExecutionContext
.getExecutor()
.getEventBus()
Expand Down Expand Up @@ -776,7 +772,7 @@ public List<String> getCompilerOptions() {
public ImmutableMap<String, String> getExecutionInfo() {
return executionInfo;
}

/**
* Enforce that the includes actually visited during the compile were properly
* declared in the rules.
Expand Down

0 comments on commit be1e2e3

Please sign in to comment.