Remove reference to the deprecated and disabled Typo issue
Metalava no longer looks for common typos. It relies on the code
analyzers that run on Gerrit to detect them.
Bug: 294300564
Bug: 288072162
Test: TH
Change-Id: I5d851993c04b352e643e5c88324b7fdddbb520f4
Merged-In: I5d851993c04b352e643e5c88324b7fdddbb520f4
(cherry picked from commit 4bc22caa4d6d4e7a444b25bf74013b07247ffaff)
diff --git a/build/xsdc.go b/build/xsdc.go
index c5bc28d..04a2111 100644
--- a/build/xsdc.go
+++ b/build/xsdc.go
@@ -37,7 +37,7 @@
var (
pctx = android.NewPackageContext("android/xsdc")
- xsdc = pctx.HostBinToolVariable("xsdcCmd", "xsdc")
+ xsdc = pctx.HostBinToolVariable("xsdcCmd", "xsdc")
xsdcJavaRule = pctx.StaticRule("xsdcJavaRule", blueprint.RuleParams{
Command: `rm -rf "${out}.temp" && mkdir -p "${out}.temp" && ` +
`${xsdcCmd} $in -p $pkgName -o ${out}.temp -j $args -d ${out}.dep && ` +
@@ -297,7 +297,7 @@
args := " --stub-packages " + *module.properties.Package_name +
" --hide MissingPermission --hide BroadcastBehavior" +
" --hide HiddenSuperclass --hide DeprecationMismatch --hide UnavailableSymbol" +
- " --hide SdkConstant --hide HiddenTypeParameter --hide Todo --hide Typo"
+ " --hide SdkConstant --hide HiddenTypeParameter --hide Todo"
api_dir := proptools.StringDefault(module.properties.Api_dir, "api")