Cleanup SRC

This commit is contained in:
Daniel Mills
2021-07-14 02:34:13 -04:00
parent f29015426f
commit 6ca6fc6989
605 changed files with 53283 additions and 64305 deletions

View File

@@ -2,19 +2,16 @@ package com.volmit.iris.util;
import org.bukkit.util.Vector;
public abstract class DOP
{
private String type;
public DOP(String type)
{
this.type = type;
}
public abstract Vector op(Vector v);
public String getType()
{
return type;
}
public abstract class DOP {
private final String type;
public DOP(String type) {
this.type = type;
}
public abstract Vector op(Vector v);
public String getType() {
return type;
}
}