mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-17 10:24:23 +01:00
Fixed exception whilst reloading resources
This commit is contained in:
parent
5077d04193
commit
60acaf64dd
1 changed files with 4 additions and 6 deletions
|
@ -1,5 +1,6 @@
|
|||
package com.minelittlepony.unicopia.client.gui;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import com.minelittlepony.unicopia.ability.magic.spell.trait.SpellTraits;
|
||||
|
@ -91,19 +92,16 @@ public class ItemTraitsTooltipRenderer implements Text, OrderedText, TooltipComp
|
|||
|
||||
@Override
|
||||
public Style getStyle() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
return Text.empty().getStyle();
|
||||
}
|
||||
|
||||
@Override
|
||||
public TextContent getContent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
return Text.empty().getContent();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Text> getSiblings() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
return new ArrayList<>();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue