Skip to content

Commit 75f057f

Browse files
authored
Update Aquatic description and fix hierarchy (#2551)
* Update Aquatic description and fix hierarchy * run spotlessApply
1 parent 4f37e65 commit 75f057f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/main/java/org/spongepowered/api/entity/living/aquatic/Aquatic.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@
2424
*/
2525
package org.spongepowered.api.entity.living.aquatic;
2626

27-
import org.spongepowered.api.block.BlockTypes;
2827
import org.spongepowered.api.entity.living.PathfinderAgent;
2928

3029
/**
31-
* Represents an aquatic creature that may be found in {@link BlockTypes#WATER}
30+
* Represents an aquatic creature that needs to stay in water to survive
3231
*/
3332
public interface Aquatic extends PathfinderAgent {
3433

src/main/java/org/spongepowered/api/entity/living/monster/guardian/Guardian.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,13 @@
2828
import org.spongepowered.api.data.value.Value;
2929
import org.spongepowered.api.entity.living.Living;
3030
import org.spongepowered.api.entity.living.Monster;
31-
import org.spongepowered.api.entity.living.aquatic.Aquatic;
3231

3332
import java.util.Optional;
3433

3534
/**
3635
* Represents a Guardian.
3736
*/
38-
public interface Guardian extends Aquatic, Monster {
37+
public interface Guardian extends Monster {
3938

4039
/**
4140
* {@link Keys#BEAM_TARGET_ENTITY}

0 commit comments

Comments
 (0)