Collections.emptyList() vs. new instance In practice, is it better to return an empty list like this: return Collections.emptyList(); Or like this: return new ArrayList<Foo>(); Or is this completely dependent upon what you’re going... May 20, 2022 0 Comments