Skip to content

Commit

Permalink
Fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmihajlovski committed May 17, 2015
1 parent 74d1068 commit c8df480
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -134,7 +134,7 @@ public long persist(Object record) {


@Override @Override
public long persistedIdOf(Object record) { public long persistedIdOf(Object record) {
return inmem.insertOfGetId(record); return inmem.insertOrGetId(record);
} }


@Override @Override
Expand Down
Expand Up @@ -639,7 +639,7 @@ public long persist(Object record) {
} }
} }


public long insertOfGetId(Object record) { public long insertOrGetId(Object record) {
Long id = Beany.getIdIfExists(record); Long id = Beany.getIdIfExists(record);
if (id == null || id <= 0) { if (id == null || id <= 0) {
return insert(record); return insert(record);
Expand Down

0 comments on commit c8df480

Please sign in to comment.