Skip to content
Snippets Groups Projects
Verified Commit 4d8850b9 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

FIX: fix legacy integer id generation (don't increment by two)

parent c433eeff
Branches
Tags
2 merge requests!117Release 0.12.2,!114F fix id generation
Pipeline #46743 passed
...@@ -60,7 +60,6 @@ public class LegacyIds extends EntityIdRegistryStrategy { ...@@ -60,7 +60,6 @@ public class LegacyIds extends EntityIdRegistryStrategy {
if (!isInit) { if (!isInit) {
init(); init();
} }
++currentMaxId;
return Integer.toString(++currentMaxId); return Integer.toString(++currentMaxId);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment