Skip to content

Commit

Permalink
Remove useless WARNING in log
Browse files Browse the repository at this point in the history
It is called when reolving native dependencies line 2512 and
when resolving boot classpath line 2281. And it happens that these
functionalities are not used, it is the case in our product, and it
still works perfectly. Nothing to be warned of...

Change-Id: I247f59b214749e0211090f254e0a3ea5cb069389
  • Loading branch information
Benoit Desire authored and gluck committed Nov 16, 2018
1 parent 875aaab commit e7955ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion capsule/src/main/java/Capsule.java
Original file line number Diff line number Diff line change
Expand Up @@ -3495,7 +3495,7 @@ protected final List<Path> resolve(Object x) {
if (res == null)
throw new RuntimeException("Could not resolve " + x);
if (res.isEmpty())
log(LOG_VERBOSE, "WARNING resolve " + x + " was empty");
log(LOG_VERBOSE, "resolve " + x + " was empty");
return res;
}

Expand Down

0 comments on commit e7955ba

Please sign in to comment.