Skip to content

Commit f77c3d1

Browse files
author
Justin Liu
committed
Fix the _JAVA_OPTIONS filtering.
1 parent ae87007 commit f77c3d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java/weka/classifiers/meta/AutoWEKAClassifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ public void run() {
410410
//log.info(line);
411411
} else if(line.matches(".*WARN.*")) {
412412
// filter out noisy warning message
413-
if (line.matches(".*Picked up _JAVA_OPTIONS: --add-opens=java.base/java.lang=ALL-UNNAMED.*")) {
413+
if (line.matches(".*Picked up _JAVA_OPTIONS:.*")) {
414414
continue;
415415
}
416416
log.warn(line);

0 commit comments

Comments
 (0)