Skip to content

Commit

Permalink
Fix the _JAVA_OPTIONS filtering.
Browse files Browse the repository at this point in the history
  • Loading branch information
justinuliu committed Mar 4, 2022
1 parent ae87007 commit f77c3d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/java/weka/classifiers/meta/AutoWEKAClassifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ public void run() {
//log.info(line);
} else if(line.matches(".*WARN.*")) {
// filter out noisy warning message
if (line.matches(".*Picked up _JAVA_OPTIONS: --add-opens=java.base/java.lang=ALL-UNNAMED.*")) {
if (line.matches(".*Picked up _JAVA_OPTIONS:.*")) {
continue;
}
log.warn(line);
Expand Down

0 comments on commit f77c3d1

Please sign in to comment.