Skip to content

Commit

Permalink
Clean up code that directly imports nested classes like Builder, Entr…
Browse files Browse the repository at this point in the history
…y, etc.

PiperOrigin-RevId: 195090893
  • Loading branch information
katre authored and Copybara-Service committed May 2, 2018
1 parent ac656a9 commit ac250de
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map.Entry;
import java.util.Map;
import javax.annotation.Nullable;

/** All the information needed to perform a single Java library build operation. */
Expand Down Expand Up @@ -161,7 +161,7 @@ public JavaLibraryBuildRequest(
this.tempDir = asPath(firstNonNull(optionsParser.getTempDir(), "_tmp"));
this.outputJar = asPath(optionsParser.getOutputJar());
this.nativeHeaderOutput = asPath(optionsParser.getNativeHeaderOutput());
for (Entry<String, List<String>> entry : optionsParser.getPostProcessors().entrySet()) {
for (Map.Entry<String, List<String>> entry : optionsParser.getPostProcessors().entrySet()) {
switch (entry.getKey()) {
case "jacoco":
this.jacocoInstrumentationProcessor =
Expand Down

0 comments on commit ac250de

Please sign in to comment.