Remove superfluous use of no_framework_libs: true

Bug: 134566750
Test: m droid
Change-Id: If48f071094ae0d61f7f659142d1cb5d1fe2db9d0
diff --git a/build/aidl_interface.go b/build/aidl_interface.go
index 3da4209..6a552e4 100644
--- a/build/aidl_interface.go
+++ b/build/aidl_interface.go
@@ -850,14 +850,13 @@
 	})
 
 	mctx.CreateModule(android.ModuleFactoryAdaptor(java.LibraryFactory), &javaProperties{
-		Name:              proptools.StringPtr(javaModuleGen),
-		Owner:             i.properties.Owner,
-		Installable:       proptools.BoolPtr(true),
-		Defaults:          []string{"aidl-java-module-defaults"},
-		No_framework_libs: proptools.BoolPtr(true),
-		Sdk_version:       proptools.StringPtr(sdkVersion),
-		Static_libs:       wrap("", i.properties.Imports, "-java"),
-		Srcs:              []string{":" + javaSourceGen},
+		Name:        proptools.StringPtr(javaModuleGen),
+		Owner:       i.properties.Owner,
+		Installable: proptools.BoolPtr(true),
+		Defaults:    []string{"aidl-java-module-defaults"},
+		Sdk_version: proptools.StringPtr(sdkVersion),
+		Static_libs: wrap("", i.properties.Imports, "-java"),
+		Srcs:        []string{":" + javaSourceGen},
 	})
 
 	return javaModuleGen
diff --git a/build/properties.go b/build/properties.go
index f0256b8..321ec71 100644
--- a/build/properties.go
+++ b/build/properties.go
@@ -45,14 +45,13 @@
 }
 
 type javaProperties struct {
-	Name              *string
-	Owner             *string
-	Defaults          []string
-	Installable       *bool
-	No_framework_libs *bool
-	Sdk_version       *string
-	Srcs              []string
-	Static_libs       []string
+	Name        *string
+	Owner       *string
+	Defaults    []string
+	Installable *bool
+	Sdk_version *string
+	Srcs        []string
+	Static_libs []string
 }
 
 type phonyProperties struct {