Correct copy-paste error in ValidationOptions

This commit is contained in:
James Agnew 2020-03-01 21:38:36 -05:00
parent 5cf87b8814
commit 9178945241
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public class ValidationOptions {
public ValidationOptions guessSystem() {
ValidationOptions n = this.copy();
n.guessSystem = false;
n.guessSystem = true;
return n;
}