I was wondering which is more efficient and why?
1)
List<Blah> foo;
...
return ImmutableList.copyOf(foo);
or
2)
List<Blah> foo;
...
return new ImmutableList.Builder<Blah>().addAll(foo).build();
|
|
I don't see any reason why you should use builder here:
P.S. Personally I use |
||||
|
|