Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 973ae236 authored by Jyotiraditya Panda's avatar Jyotiraditya Panda
Browse files

SystemUI: Switch to Kotlin alternatives for java.lang annotations



Test: build and check for warnings/errors
Change-Id: I3f4d3a7c9d6de7a76c381ebaa6828fa576abad80
Signed-off-by: default avatarJyotiraditya Panda <jyotiraditya@aospa.co>
parent 7fe439c6
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -15,10 +15,7 @@
 */
package com.android.systemui.dagger.qualifiers

import java.lang.annotation.Documented
import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy.RUNTIME
import javax.inject.Qualifier

/** Annotates a class that is display specific. */
@Qualifier @Documented @Retention(RUNTIME) annotation class DisplaySpecific
@Qualifier @MustBeDocumented @Retention(AnnotationRetention.RUNTIME) annotation class DisplaySpecific
+1 −4
Original line number Diff line number Diff line
@@ -16,10 +16,7 @@

package com.android.systemui.log.dagger

import java.lang.annotation.Documented
import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
import javax.inject.Qualifier

/** Logger for the primary and alternative bouncers. */
@Qualifier @Documented @Retention(RetentionPolicy.RUNTIME) annotation class BouncerTableLog
@Qualifier @MustBeDocumented @Retention(AnnotationRetention.RUNTIME) annotation class BouncerTableLog
+1 −3
Original line number Diff line number Diff line
@@ -15,9 +15,7 @@
 */
package com.android.systemui.qs.pipeline.dagger

import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
import javax.inject.Qualifier

/** A [LogBuffer] for the new QS Pipeline for logging changes to the set of current tiles. */
@Qualifier @MustBeDocumented @Retention(RetentionPolicy.RUNTIME) annotation class QSTileListLog
@Qualifier @MustBeDocumented @Retention(AnnotationRetention.RUNTIME) annotation class QSTileListLog