Details
Description
Most of the Sakai API have methods like:
List getAllFoo();
These should be:
List<Foo> getAllFoo()
This is both for code safety and for usability (that way users of the API's are clear what the method returns in its collection)