Skip to:
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)
Last commits in 2010 so these have already worked their way into releases.
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)