I use these annotations a LOT and I don't think you use them. Would you consider adding them?
For example, Box#put supports null collections but doesn't say so:
public void put(Collection<T> entities) {
if(entities != null && !entities.isEmpty()) { // yay!
Cursor cursor = getWriter();
try {
Iterator i = entities.iterator();
while(i.hasNext()) {
cursor.put(i.next());
}
commitWriter(cursor);
} finally {
releaseWriter(cursor);
}
}
}
I use these annotations a LOT and I don't think you use them. Would you consider adding them?
For example,
Box#putsupports null collections but doesn't say so: