Skip to content

Commit

Permalink
fix: props empty check
Browse files Browse the repository at this point in the history
  • Loading branch information
gb-cic committed Dec 14, 2023
1 parent 5ce480a commit b6bc901
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public void postConstruct() {
log.info("[GTW-CFG] Property {} is set as {}", key, value);
props.put(key, Pair.of(new Date().getTime(), value));
});
if(opt.getItems().isEmpty()) log.info("[GTW-CFG] No props were found");
}
if(opts.isEmpty()) log.info("[GTW-CFG] No props were found");
}
integrity();
}
Expand Down

0 comments on commit b6bc901

Please sign in to comment.