mirror of
https://github.com/SlimeVR/SlimeVR-Server.git
synced 2026-04-05 18:01:56 +02:00
10 lines
192 B
Java
10 lines
192 B
Java
package io.eiren.util.ann;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
|
|
@Target({ ElementType.FIELD, ElementType.METHOD })
|
|
public @interface DebugSwitch {
|
|
}
|