change default value for pernote and peruser

This commit is contained in:
CloverHearts 2016-10-18 03:21:15 +09:00 committed by Jongyoul Lee
parent 787a366b25
commit 1f64e52ed2

View file

@ -113,14 +113,14 @@ public class InterpreterOption {
}
public InterpreterOption() {
this.perNote = null;
this.perUser = null;
this.perNote = SCOPED;
this.perUser = SCOPED;
remote = false;
}
public InterpreterOption(boolean remote) {
this.perNote = null;
this.perUser = null;
this.perNote = SCOPED;
this.perUser = SCOPED;
this.remote = remote;
}