jirm icon indicating copy to clipboard operation
jirm copied to clipboard

.insert() should not return void.

Open agentgt opened this issue 11 years ago • 1 comments

Currently to insert an object in JIRM you do:

dao.insert(object);

This is inconsistent with the fluent portion of the API and leaves no room for extensibility. It should be:

dao.insert(object).execute();

agentgt avatar Jan 19 '13 17:01 agentgt