mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-27 02:01:29 +08:00
Run Spotless on src/main
This commit is contained in:
@@ -1,17 +1,13 @@
|
||||
package emu.grasscutter.net.packet;
|
||||
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface Opcodes {
|
||||
/**
|
||||
* Opcode for the packet/handler
|
||||
*/
|
||||
int value();
|
||||
|
||||
/**
|
||||
* HANDLER ONLY - will disable this handler from being registered
|
||||
*/
|
||||
boolean disabled() default false;
|
||||
}
|
||||
package emu.grasscutter.net.packet;
|
||||
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface Opcodes {
|
||||
/** Opcode for the packet/handler */
|
||||
int value();
|
||||
|
||||
/** HANDLER ONLY - will disable this handler from being registered */
|
||||
boolean disabled() default false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user