Remove pointless Getter annotations
This commit is contained in:
parent
ab1aacbdc9
commit
d4e4796739
@ -14,44 +14,37 @@ import java.util.List;
|
|||||||
public abstract class BaseComponent
|
public abstract class BaseComponent
|
||||||
{
|
{
|
||||||
|
|
||||||
@Getter(AccessLevel.NONE)
|
|
||||||
@Setter(AccessLevel.NONE)
|
@Setter(AccessLevel.NONE)
|
||||||
BaseComponent parent;
|
BaseComponent parent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The color of this component and any child components (unless overridden)
|
* The color of this component and any child components (unless overridden)
|
||||||
*/
|
*/
|
||||||
@Getter(AccessLevel.NONE)
|
|
||||||
private ChatColor color;
|
private ChatColor color;
|
||||||
/**
|
/**
|
||||||
* Whether this component and any child components (unless overridden) is
|
* Whether this component and any child components (unless overridden) is
|
||||||
* bold
|
* bold
|
||||||
*/
|
*/
|
||||||
@Getter(AccessLevel.NONE)
|
|
||||||
private Boolean bold;
|
private Boolean bold;
|
||||||
/**
|
/**
|
||||||
* Whether this component and any child components (unless overridden) is
|
* Whether this component and any child components (unless overridden) is
|
||||||
* italic
|
* italic
|
||||||
*/
|
*/
|
||||||
@Getter(AccessLevel.NONE)
|
|
||||||
private Boolean italic;
|
private Boolean italic;
|
||||||
/**
|
/**
|
||||||
* Whether this component and any child components (unless overridden) is
|
* Whether this component and any child components (unless overridden) is
|
||||||
* underlined
|
* underlined
|
||||||
*/
|
*/
|
||||||
@Getter(AccessLevel.NONE)
|
|
||||||
private Boolean underlined;
|
private Boolean underlined;
|
||||||
/**
|
/**
|
||||||
* Whether this component and any child components (unless overridden) is
|
* Whether this component and any child components (unless overridden) is
|
||||||
* strikethrough
|
* strikethrough
|
||||||
*/
|
*/
|
||||||
@Getter(AccessLevel.NONE)
|
|
||||||
private Boolean strikethrough;
|
private Boolean strikethrough;
|
||||||
/**
|
/**
|
||||||
* Whether this component and any child components (unless overridden) is
|
* Whether this component and any child components (unless overridden) is
|
||||||
* obfuscated
|
* obfuscated
|
||||||
*/
|
*/
|
||||||
@Getter(AccessLevel.NONE)
|
|
||||||
private Boolean obfuscated;
|
private Boolean obfuscated;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user