mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-06 15:56:27 +00:00
Cleanup SRC
This commit is contained in:
@@ -1,11 +1,9 @@
|
||||
package com.volmit.iris.util;
|
||||
|
||||
public interface IRare
|
||||
{
|
||||
public int getRarity();
|
||||
public interface IRare {
|
||||
int getRarity();
|
||||
|
||||
public static int get(Object v)
|
||||
{
|
||||
return v instanceof IRare ? ((IRare) v).getRarity() : 1;
|
||||
}
|
||||
static int get(Object v) {
|
||||
return v instanceof IRare ? ((IRare) v).getRarity() : 1;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user