Skip to content

Commit

Permalink
Fixed another bug I created in SetMethodAction
Browse files Browse the repository at this point in the history
- I forgot that I am in a cycle

Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
  • Loading branch information
dmatej committed Sep 18, 2022
1 parent 6444a4c commit fae5b12
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public Void run() throws Exception {
final EnvironmentProperty prop = it.next();
final String resolvedValue = prop.getResolvedValue();
if (resolvedValue == null || resolvedValue.isBlank()) {
return null;
continue;
}

final String propName = prop.getName();
Expand All @@ -76,8 +76,9 @@ public Void run() throws Exception {
// log WARNING, deployment can continue.
logger.log(Level.WARNING, "rardeployment.no_setter_method",
new Object[] {prop.getName(), bean.getClass().getName()});
return null;
continue;
}

try {
if (logger.isLoggable(Level.FINER)) {
logger.log(Level.FINER,
Expand Down

0 comments on commit fae5b12

Please sign in to comment.