ktlint: Fix standard_kdoc violations

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta 2026-01-21 17:12:44 +08:00
parent ea105e9026
commit 555cd3acb7
2 changed files with 2 additions and 3 deletions

View file

@ -22,7 +22,6 @@ ktlint_standard_function-expression-body = disabled
ktlint_standard_function-literal = disabled ktlint_standard_function-literal = disabled
ktlint_standard_function-signature = disabled ktlint_standard_function-signature = disabled
ktlint_standard_indent = disabled ktlint_standard_indent = disabled
ktlint_standard_kdoc = disabled
ktlint_standard_max-line-length = disabled ktlint_standard_max-line-length = disabled
ktlint_standard_mixed-condition-operators = disabled ktlint_standard_mixed-condition-operators = disabled
ktlint_standard_no-empty-first-line-in-class-body = disabled ktlint_standard_no-empty-first-line-in-class-body = disabled

View file

@ -98,14 +98,14 @@ internal class PackageValidator(context: Context) {
callingUid == Process.SYSTEM_UID -> true callingUid == Process.SYSTEM_UID -> true
// If the app was signed by the same certificate as the platform itself, also allow it. // If the app was signed by the same certificate as the platform itself, also allow it.
callerSignature == platformSignature -> true callerSignature == platformSignature -> true
/** /*
* [MEDIA_CONTENT_CONTROL] permission is only available to system applications, and * [MEDIA_CONTENT_CONTROL] permission is only available to system applications, and
* while it isn't required to allow these apps to connect to a * while it isn't required to allow these apps to connect to a
* [MediaBrowserServiceCompat], allowing this ensures optimal compatability with apps * [MediaBrowserServiceCompat], allowing this ensures optimal compatability with apps
* such as Android TV and the Google Assistant. * such as Android TV and the Google Assistant.
*/ */
callerPackageInfo.permissions.contains(MEDIA_CONTENT_CONTROL) -> true callerPackageInfo.permissions.contains(MEDIA_CONTENT_CONTROL) -> true
/** /*
* If the calling app has a notification listener it is able to retrieve notifications * If the calling app has a notification listener it is able to retrieve notifications
* and can connect to an active [MediaSessionCompat]. * and can connect to an active [MediaSessionCompat].
* *