mirror of
https://github.com/SlimeVR/SlimeVR-Server.git
synced 2026-04-06 02:01:58 +02:00
bridge,util/ann: Convert annotations to Kotlin
This commit is contained in:
@@ -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 {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package dev.slimevr.bridge
|
||||
|
||||
@Retention(AnnotationRetention.SOURCE)
|
||||
annotation class BridgeThread
|
||||
@@ -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 {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package dev.slimevr.util.ann
|
||||
|
||||
@Retention(AnnotationRetention.SOURCE)
|
||||
annotation class VRServerThread
|
||||
Reference in New Issue
Block a user