I'm getting a little confused with Arrays and was hoping that someone could help me out.
I hope this makes sense because I am a bit confused. Any help is much appreciated!
The while loop creating the objects in class 'League'
while (lineScanner.hasNextLine())
{
currentLine = lineScanner.nextLine();
String[] newSSs = currentLine.split(",");
Team team = new Team(newSS[0]);
team.setWins(Integer.valueOf(newSS[1]));
team.setDraws(Integer.valueOf(newSS[2]));
team.setLoses(Integer.valueOf(newSS[3]));
team.setPoints(team.calculatePoints());
ArrayLists in your code?ArrayList... I think you should post more of yourLeague.class(and most likely the stuff you have around your while loop)