Code style changes.
This commit is contained in:
@@ -30,5 +30,5 @@ import java.lang.annotation.Target;
|
||||
@Target(ElementType.METHOD)
|
||||
public @interface Id
|
||||
{
|
||||
public int[] value();
|
||||
int[] value();
|
||||
}
|
||||
|
@@ -28,5 +28,5 @@ import java.lang.annotation.Target;
|
||||
@Target(ElementType.METHOD)
|
||||
public @interface Ids
|
||||
{
|
||||
public Id[] value();
|
||||
Id[] value();
|
||||
}
|
||||
|
@@ -30,7 +30,7 @@ import java.lang.annotation.Target;
|
||||
@Target(ElementType.METHOD)
|
||||
public @interface NpcLevelRange
|
||||
{
|
||||
public int from();
|
||||
int from();
|
||||
|
||||
public int to();
|
||||
int to();
|
||||
}
|
||||
|
@@ -28,5 +28,5 @@ import java.lang.annotation.Target;
|
||||
@Target(ElementType.METHOD)
|
||||
public @interface NpcLevelRanges
|
||||
{
|
||||
public NpcLevelRange[] value();
|
||||
NpcLevelRange[] value();
|
||||
}
|
||||
|
@@ -28,5 +28,5 @@ import java.lang.annotation.Target;
|
||||
@Target(ElementType.METHOD)
|
||||
public @interface Priority
|
||||
{
|
||||
public int value() default 0;
|
||||
int value() default 0;
|
||||
}
|
||||
|
@@ -30,7 +30,7 @@ import java.lang.annotation.Target;
|
||||
@Target(ElementType.METHOD)
|
||||
public @interface Range
|
||||
{
|
||||
public int from();
|
||||
int from();
|
||||
|
||||
public int to();
|
||||
int to();
|
||||
}
|
||||
|
@@ -28,5 +28,5 @@ import java.lang.annotation.Target;
|
||||
@Target(ElementType.METHOD)
|
||||
public @interface Ranges
|
||||
{
|
||||
public Range[] value();
|
||||
Range[] value();
|
||||
}
|
||||
|
@@ -30,5 +30,5 @@ import com.l2jmobius.gameserver.model.events.EventType;
|
||||
@Target(ElementType.METHOD)
|
||||
public @interface RegisterEvent
|
||||
{
|
||||
public EventType value();
|
||||
EventType value();
|
||||
}
|
||||
|
@@ -30,5 +30,5 @@ import com.l2jmobius.gameserver.model.events.ListenerRegisterType;
|
||||
@Target(ElementType.METHOD)
|
||||
public @interface RegisterType
|
||||
{
|
||||
public ListenerRegisterType value();
|
||||
ListenerRegisterType value();
|
||||
}
|
||||
|
Reference in New Issue
Block a user