Autoformat using tab characters

This commit is contained in:
Pazaz 2022-06-27 20:30:17 -04:00
parent 0b44eca4ba
commit a3b7beeed7
278 changed files with 22710 additions and 22769 deletions

View file

@ -3,7 +3,7 @@ package org.openrs2.deob.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target({ ElementType.PARAMETER })
@Target({ElementType.PARAMETER})
public @interface OriginalArg {
int value();
}

View file

@ -3,7 +3,7 @@ package org.openrs2.deob.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target({ ElementType.TYPE })
@Target({ElementType.TYPE})
public @interface OriginalClass {
String value();
}

View file

@ -3,9 +3,11 @@ package org.openrs2.deob.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target({ ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.METHOD })
@Target({ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.METHOD})
public @interface OriginalMember {
String owner();
String name();
String descriptor();
}

View file

@ -3,7 +3,7 @@ package org.openrs2.deob.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target({ ElementType.LOCAL_VARIABLE, ElementType.PARAMETER })
@Target({ElementType.LOCAL_VARIABLE, ElementType.PARAMETER})
public @interface Pc {
int value();
}