Code style changes.

This commit is contained in:
MobiusDev
2016-04-26 19:21:19 +00:00
parent 6a13705766
commit fc070c9238
768 changed files with 3338 additions and 4252 deletions

View File

@@ -94,7 +94,7 @@ public class OlympiadGameTeams extends AbstractOlympiadGame
}
}
protected static final Participant[][] createListOfParticipants(List<List<Integer>> list)
protected static Participant[][] createListOfParticipants(List<List<Integer>> list)
{
if ((list == null) || list.isEmpty() || (list.size() < 2))
{
@@ -111,7 +111,7 @@ public class OlympiadGameTeams extends AbstractOlympiadGame
{
teamOne = list.remove(Rnd.nextInt(list.size()));
if (((teamOne == null) || teamOne.isEmpty()))
if ((teamOne == null) || teamOne.isEmpty())
{
continue;
}