diff options
author | Pacien TRAN-GIRARD | 2016-04-08 19:12:40 +0200 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2016-04-08 19:12:40 +0200 |
commit | 5d8e8c6e0430d004162cb02229a55ab5ae7dee05 (patch) | |
tree | ab10847911e4a4cac94b1ce8083cc5f467898774 /src | |
parent | db4143daf935741628144b9d82ed7612df7930d7 (diff) | |
download | xblast-5d8e8c6e0430d004162cb02229a55ab5ae7dee05.tar.gz |
Reformat code and optimize imports
Diffstat (limited to 'src')
-rw-r--r-- | src/ch/epfl/xblast/server/Board.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ch/epfl/xblast/server/Board.java b/src/ch/epfl/xblast/server/Board.java index 79259b5..661a7a8 100644 --- a/src/ch/epfl/xblast/server/Board.java +++ b/src/ch/epfl/xblast/server/Board.java | |||
@@ -5,7 +5,6 @@ import ch.epfl.xblast.Cell; | |||
5 | import ch.epfl.xblast.Lists; | 5 | import ch.epfl.xblast.Lists; |
6 | 6 | ||
7 | import java.util.ArrayList; | 7 | import java.util.ArrayList; |
8 | import java.util.Collections; | ||
9 | import java.util.List; | 8 | import java.util.List; |
10 | 9 | ||
11 | /** | 10 | /** |
@@ -50,6 +49,7 @@ public final class Board { | |||
50 | * List containing all the blocks of the board. | 49 | * List containing all the blocks of the board. |
51 | */ | 50 | */ |
52 | private List<Sq<Block>> blocks; | 51 | private List<Sq<Block>> blocks; |
52 | |||
53 | /** | 53 | /** |
54 | * Instantiates a new Board with the given sequence of blocks. | 54 | * Instantiates a new Board with the given sequence of blocks. |
55 | * | 55 | * |