Skip to content

Commit

Permalink
Fix bug in creation of entities
Browse files Browse the repository at this point in the history
  • Loading branch information
dfuchss committed Nov 29, 2024
1 parent 55cc407 commit 6c17d95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected Entity() {
* @param name the name of the entity to be created
*/
protected Entity(String name) {
this(IdentifierProvider.createId(), name);
this(name, IdentifierProvider.createId());
}

protected Entity(String name, String id) {
Expand Down

0 comments on commit 6c17d95

Please sign in to comment.