Skip to content

Commit

Permalink
fix missing semicolon
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro M. Ramallo <[email protected]>
  • Loading branch information
aramallo committed Aug 20, 2024
1 parent 17f4a09 commit fe2442f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/bondy/src/bondy_registry_entry.erl
Original file line number Diff line number Diff line change
Expand Up @@ -1009,13 +1009,13 @@ dirty_delete(Type, EntryKey) ->
ok = plum_db:dirty_put(PDBPrefix, EntryKey, Resolved, Opts),

%% We return the original value
plum_db_object:value(Obj0)
plum_db_object:value(Obj0);

{error, not_found} ->
undefined;

{error, _} ->
undefined;
undefined

end.

Expand Down

0 comments on commit fe2442f

Please sign in to comment.