Removed trailing whitespaces.

This commit is contained in:
Wizjany
2011-09-24 15:32:03 -04:00
parent b5b55a2775
commit f90e47da9a
45 changed files with 402 additions and 402 deletions

View File

@ -31,19 +31,19 @@ import java.util.Set;
public interface Region extends Iterable<BlockVector> {
/**
* Get the lower point of a region.
*
*
* @return min. point
*/
public Vector getMinimumPoint();
/**
* Get the upper point of a region.
*
*
* @return max. point
*/
public Vector getMaximumPoint();
/**
* Get the number of blocks in the region.
*
*
* @return number of blocks
*/
public int getArea();
@ -69,26 +69,26 @@ public interface Region extends Iterable<BlockVector> {
* Expand the region.
*
* @param change
* @throws RegionOperationException
* @throws RegionOperationException
*/
public void expand(Vector change) throws RegionOperationException;
/**
* Contract the region.
*
* @param change
* @throws RegionOperationException
* @throws RegionOperationException
*/
public void contract(Vector change) throws RegionOperationException;
/**
* Returns true based on whether the region contains the point,
*
* @param pt
* @return
* @return
*/
public boolean contains(Vector pt);
/**
* Get a list of chunks.
*
*
* @return
*/
public Set<Vector2D> getChunks();