In practice, is it better to return an empty list like this:
public class Configuration
{
private List<Foo> fooList;
// do stuff
public List<Foo> getFooList()
{
if(fooList == null)
{
fooList = Collections.emptyList();
}
return fooList;
}
}
Or like this:
public class Configuration
{
private List<Foo> fooList;
// do stuff
public List<Foo> getFooList()
{
if(fooList == null)
{
fooList = new ArrayList<Foo>();
}
return fooList;
}
}
Or is this completely dependent upon what you're going to do with the returned list?