Javadocs cleanup

This commit is contained in:
TfT_02
2013-08-10 20:10:45 +02:00
parent 4ff6b5fbc7
commit 90fcf35c34
20 changed files with 33 additions and 34 deletions

View File

@@ -136,7 +136,7 @@ public interface ChunkManager {
/**
* Check to see if a given BlockState location is set to true
*
* @param location BlockState location to check
* @param blockState BlockState to check
* @return true if the given BlockState location is set to true, false if otherwise
*/
public boolean isTrue(BlockState blockState);
@@ -161,7 +161,7 @@ public interface ChunkManager {
/**
* Set a given BlockState location to true, should create stores as necessary if the location does not exist
*
* @param block BlockState location to set
* @param blockState BlockState location to set
*/
public void setTrue(BlockState blockState);
@@ -185,7 +185,7 @@ public interface ChunkManager {
/**
* Set a given BlockState location to false, should not create stores if one does not exist for the given location
*
* @param block BlockState location to set
* @param blockState BlockState location to set
*/
public void setFalse(BlockState blockState);