aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2016-04-08 19:12:40 +0200
committerPacien TRAN-GIRARD2016-04-08 19:12:40 +0200
commit5d8e8c6e0430d004162cb02229a55ab5ae7dee05 (patch)
treeab10847911e4a4cac94b1ce8083cc5f467898774 /src
parentdb4143daf935741628144b9d82ed7612df7930d7 (diff)
downloadxblast-5d8e8c6e0430d004162cb02229a55ab5ae7dee05.tar.gz
Reformat code and optimize imports
Diffstat (limited to 'src')
-rw-r--r--src/ch/epfl/xblast/server/Board.java2
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;
5import ch.epfl.xblast.Lists; 5import ch.epfl.xblast.Lists;
6 6
7import java.util.ArrayList; 7import java.util.ArrayList;
8import java.util.Collections;
9import java.util.List; 8import 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 *