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

@ -38,7 +38,7 @@ public class BlockChance {
/**
* Construct the object.
*
*
* @param block
* @param chance
*/

View File

@ -73,7 +73,7 @@ public class RandomFillPattern implements Pattern {
*/
public BaseBlock next(Vector pos) {
double r = random.nextDouble();
for (BlockChance block : blocks) {
if (r <= block.getChance()) {
return block.getBlock();

View File

@ -35,7 +35,7 @@ public class SingleBlockPattern implements Pattern {
/**
* Construct the object.
*
*
* @param block
*/
public SingleBlockPattern(BaseBlock block) {
@ -44,7 +44,7 @@ public class SingleBlockPattern implements Pattern {
/**
* Get next block.
*
*
* @param pos
* @return
*/
@ -54,7 +54,7 @@ public class SingleBlockPattern implements Pattern {
/**
* Get the block.
*
*
* @return
*/
public BaseBlock getBlock() {