Skip to content

Commit

Permalink
Fixed typo in ApkProvider: s/coverageMetdata/coverageMetadata
Browse files Browse the repository at this point in the history
RELNOTES: None.
PiperOrigin-RevId: 176423487
  • Loading branch information
jin authored and Copybara-Service committed Nov 20, 2017
1 parent 7c8ff9f commit a5833a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ public abstract class ApkProvider implements TransitiveInfoProvider {
public static ApkProvider create(
Artifact apk,
Artifact unsignedApk,
@Nullable Artifact coverageMetdata,
@Nullable Artifact coverageMetadata,
Artifact mergedManifest,
Artifact keystore) {
return new AutoValue_ApkProvider(apk, unsignedApk, coverageMetdata, mergedManifest, keystore);
return new AutoValue_ApkProvider(apk, unsignedApk, coverageMetadata, mergedManifest, keystore);
}

/** Returns the APK file built in the transitive closure. */
Expand Down

0 comments on commit a5833a8

Please sign in to comment.