bridge,util/ann: Convert annotations to Kotlin

This commit is contained in:
Sapphire
2026-03-13 19:05:56 -05:00
parent 2f03f83c62
commit c57701d8ff
4 changed files with 8 additions and 19 deletions

View File

@@ -1,9 +0,0 @@
package dev.slimevr.bridge;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(value = RetentionPolicy.SOURCE)
public @interface BridgeThread {
}

View File

@@ -0,0 +1,4 @@
package dev.slimevr.bridge
@Retention(AnnotationRetention.SOURCE)
annotation class BridgeThread

View File

@@ -1,10 +0,0 @@
package dev.slimevr.util.ann;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(value = RetentionPolicy.SOURCE)
public @interface VRServerThread {
}

View File

@@ -0,0 +1,4 @@
package dev.slimevr.util.ann
@Retention(AnnotationRetention.SOURCE)
annotation class VRServerThread