Skip to content
Snippets Groups Projects
Commit 3ab5970d authored by Daniel Schmidt's avatar Daniel Schmidt
Browse files

only use active patterns, boy that was easy

parent 2b5f7b87
No related branches found
No related tags found
No related merge requests found
......@@ -130,7 +130,7 @@ public class PatternList {
}
public Iterator<Pattern> iterator() {
return this.patternList.iterator();
return this.patternList.filtered((pattern) -> pattern.getActive().get()).iterator();
}
public ObservableList<Pattern> getObservableList() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment