Make constructors of blocks package-private.

This commit is contained in:
Major-
2014-02-23 22:56:52 +00:00
parent da0ac85aa5
commit 86b8eea4f4
3 changed files with 3 additions and 3 deletions
@@ -18,7 +18,7 @@ public final class ForceChatBlock extends SynchronizationBlock {
* *
* @param message The message. * @param message The message.
*/ */
public ForceChatBlock(String message) { ForceChatBlock(String message) {
this.message = message; this.message = message;
} }
@@ -17,7 +17,7 @@ public final class InteractingMobBlock extends SynchronizationBlock {
* *
* @param mobIndex The index of the current interacting mob. * @param mobIndex The index of the current interacting mob.
*/ */
public InteractingMobBlock(int mobIndex) { InteractingMobBlock(int mobIndex) {
this.mobIndex = mobIndex; this.mobIndex = mobIndex;
} }
@@ -19,7 +19,7 @@ public final class TurnToPositionBlock extends SynchronizationBlock {
* *
* @param position The position to turn to. * @param position The position to turn to.
*/ */
public TurnToPositionBlock(Position position) { TurnToPositionBlock(Position position) {
this.position = position; this.position = position;
} }