From af8bb7008aee02d162a0d6343b610450ac53dffd Mon Sep 17 00:00:00 2001 From: Sam Delmerico Date: Mon, 25 Jul 2022 15:39:32 -0400 Subject: [PATCH] fix typo in AARImport prebuilt type assertion This looks like it may have been a typo'd copy paste or maybe a name change that got forgotten about. Test: CI Change-Id: I9f5c17f8e2d11b9cf6cd0da4685d719cdbbdcc11 --- java/aar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/aar.go b/java/aar.go index cf84309f4..dadfc6a6f 100644 --- a/java/aar.go +++ b/java/aar.go @@ -893,7 +893,7 @@ func (g *AARImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext, return nil } -var _ android.PrebuiltInterface = (*Import)(nil) +var _ android.PrebuiltInterface = (*AARImport)(nil) // android_library_import imports an `.aar` file into the build graph as if it was built with android_library. //