mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-12-24 10:11:53 +01:00
Added missing override annotations
This commit is contained in:
parent
4abf818cb6
commit
c6b2f89728
@ -161,6 +161,7 @@ public class Plan extends BukkitPlugin implements PlanPlugin {
|
||||
throw new IllegalStateException("This method should be used on this plugin.");
|
||||
}
|
||||
|
||||
@Override
|
||||
public BukkitSystem getSystem() {
|
||||
return system;
|
||||
}
|
||||
|
@ -93,6 +93,7 @@ public class PlanBungee extends BungeePlugin implements PlanPlugin {
|
||||
return PlanColorScheme.create();
|
||||
}
|
||||
|
||||
@Override
|
||||
public BungeeSystem getSystem() {
|
||||
return system;
|
||||
}
|
||||
|
@ -124,6 +124,7 @@ public class PlanSponge extends SpongePlugin implements PlanPlugin {
|
||||
return getClass().getAnnotation(Plugin.class).version();
|
||||
}
|
||||
|
||||
@Override
|
||||
public SpongeSystem getSystem() {
|
||||
return system;
|
||||
}
|
||||
|
@ -38,6 +38,7 @@ public class HealthInformation extends AbstractHealthInfo {
|
||||
calculate();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toHtml() {
|
||||
StringBuilder healthNoteBuilder = new StringBuilder();
|
||||
for (String healthNote : notes) {
|
||||
|
Loading…
Reference in New Issue
Block a user