| commit | 8d0a847154f65b47a682918392fe6f7e17ffb8ad | [log] [tgz] |
|---|---|---|
| author | Paul Duffin <paulduffin@google.com> | Fri Aug 29 17:25:34 2025 +0000 |
| committer | Paul Duffin <paulduffin@google.com> | Fri Aug 29 21:19:30 2025 +0000 |
| tree | 92d44945333e13dc7cc6c01ccf79e8fed587e295 | |
| parent | 1ccb8047abea204d417a868ad8065f43c83b588d [diff] |
Convert uses of @hide to block tag
In most places the `@hide` doctag is treated as a block tag on its own
line. However, there are a few places where it is treated as an inline
doctag, e,g. `{@hide}`, and some places where it looks like a block
tag but is inline in the text, e.g. `Some text. @hide`. Dealing with
all the types increases the complexity of Metalava and makes it
slightly slower.
This change replaces the non-block tag forms with a block tag.
Flag: EXEMPT change the form of @hide does not change the API or behavior
Bug: 429965593
Test: m checkapi
Change-Id: I935f4e62826185ccb32c61f5af7aec0e43b4870f
This code uses LOG(X) for logging. Log levels are VERBOSE,DEBUG,INFO,WARNING and ERROR. The default setting is WARNING and logs relate to WARNING and ERROR will be shown. If you want to enable the DEBUG level logs, using following command. adb shell service call dnsresolver 10 i32 1 VERBOSE 0 DEBUG 1 INFO 2 WARNING 3 ERROR 4 Verbose resolver logs could contain PII -- do NOT enable in production builds.