-
Notifications
You must be signed in to change notification settings - Fork 303
Closed
Milestone
Description
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);
}
}
}Metadata
Metadata
Assignees
Labels
No labels