Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 400 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 400 Bytes

AlbacoreDeed

A collection of human readable utility methods for Java.

There's nothing fishy about it... the name AlbacoreDeed is actually just an anagram for "readable code".

Examples

public void iterateList(List<Object> items) {
    if (thereAreOneOrMore(items) {
        for (Object item : items) {
            // do something with item
        }
    }
}