Skip to content

Commit

Permalink
fix else
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbumenJ committed Jun 22, 2023
1 parent f7ad294 commit 0dc097f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ public void export(RegisterTypeEnum registerType) {
if (shouldDelay()) {
// should register if delay export
doDelayExport();
} if (Integer.valueOf(-1).equals(getDelay())) {
} else if (Integer.valueOf(-1).equals(getDelay())) {
// should not register by default
doExport(RegisterTypeEnum.MANUAL_REGISTER);
} else {
Expand Down

0 comments on commit 0dc097f

Please sign in to comment.