Skip to content

Commit 31f3fd6

Browse files
committed
fixed bug
1 parent fdb66de commit 31f3fd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simulation/Simulation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public static <C extends Collection<Scenario>> ArrayList<Scenario> purify_forest
269269
*
270270
* @return created hand, backed ({@link ArrayList#subList(int, int)}) by the original deck
271271
*/
272-
public synchronized static <R extends Reservable> ArrayList<R> draw_hand(final int HAND_SIZE, final ArrayList<R> DECK)
272+
public static <R extends Reservable> ArrayList<R> draw_hand(final int HAND_SIZE, final ArrayList<R> DECK)
273273
{
274274
Collections.shuffle(DECK);
275275
return new ArrayList<R>(DECK.subList(0, HAND_SIZE));

0 commit comments

Comments
 (0)