From 750c42caf1ffc3326c6e492927ea3e0ae2850eaa Mon Sep 17 00:00:00 2001 From: Viktor De Pasquale Date: Fri, 26 Apr 2019 19:33:42 +0200 Subject: [PATCH] Added annotations for marking code with it's current state --- .../magisk/utils/feature/Annotations.kt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 app/src/main/java/com/topjohnwu/magisk/utils/feature/Annotations.kt diff --git a/app/src/main/java/com/topjohnwu/magisk/utils/feature/Annotations.kt b/app/src/main/java/com/topjohnwu/magisk/utils/feature/Annotations.kt new file mode 100644 index 000000000..2f7fb6361 --- /dev/null +++ b/app/src/main/java/com/topjohnwu/magisk/utils/feature/Annotations.kt @@ -0,0 +1,16 @@ +package com.topjohnwu.magisk.utils.feature + +@Retention(AnnotationRetention.SOURCE) +annotation class WIP + + +@Retention(AnnotationRetention.SOURCE) +annotation class Beta + + +@Retention(AnnotationRetention.SOURCE) +annotation class Alpha + + +@Retention(AnnotationRetention.SOURCE) +annotation class Unstable \ No newline at end of file