Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Formatting changes as necessary.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabizou committed Nov 14, 2014
1 parent c750a7e commit 935c4e6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions src/main/java/org/bukkit/entity/Endermite.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package org.bukkit.entity;

/**
* Represents a Endermite.
* Represents an Endermite.
*/
public interface Endermite extends Monster {

/**
* Represents the lifetime in ticks of the Endermite. Should disappear after 2400 ticks.
* Represents the lifetime in ticks of the Endermite. Endermites have expirable lifetimes.
*
* @return the lifetime of the Endermite in ticks.
*/
public int getLifetime();
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/org/bukkit/entity/Guardian.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
public interface Guardian extends Monster, WaterMob {

/**
*
* Returns true if this guardian is an Elder. Elders have more health
* and attack damage.
*
* @return true if this guardian is an Elder
*/
Expand All @@ -15,6 +16,7 @@ public interface Guardian extends Monster, WaterMob {
/**
* Sets the guardian to be an elder or not.
*
* @param isElder Whether the guardian is an elder or not
*/
public void setElder(boolean isElder);

Expand Down
6 changes: 2 additions & 4 deletions src/main/java/org/bukkit/entity/Rabbit.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
/**
* Represents a Rabbit.
*/
public interface Rabbit extends Animals
{
public interface Rabbit extends Animals {

/**
* Gets the type of rabbit.
Expand All @@ -26,8 +25,7 @@ public interface Rabbit extends Animals
/*
* Represents the various different Rabbit types.
*/
public enum RabbitType
{
public enum RabbitType {
BROWN,
WHITE,
BLACK,
Expand Down

0 comments on commit 935c4e6

Please sign in to comment.