aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duffin <paulduffin@google.com>2023-06-21 15:55:32 +0100
committerPaul Duffin <paulduffin@google.com>2023-08-05 20:06:42 +0000
commit78a2bc7a209d472a2ec570760e386e15171fe68c (patch)
tree7d21bcd57b2cce3970557d5dcb95b1d9188d8f00
parentefb30eb13b3c200b163902670bccb1ec449f481f (diff)
downloadxsdc-78a2bc7a209d472a2ec570760e386e15171fe68c.tar.gz
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)
-rw-r--r--build/xsdc.go4
1 files changed, 2 insertions, 2 deletions
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 @@ func init() {
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 @@ func xsdConfigMutator(mctx android.TopDownMutatorContext) {
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")