удаление отладочной печати сравнения и не только
This commit is contained in:
@@ -62,7 +62,6 @@ public class SearchReplaceForm extends Form {
|
||||
}
|
||||
public void setMode(boolean replace) {
|
||||
replace_mode = replace;
|
||||
System.out.println("MODE CHANGED");
|
||||
tfReplace.setEnabled(replace_mode);
|
||||
String prefix = replace_mode ? "Заменить" : "Найти";
|
||||
bNext.setText(prefix + " далее");
|
||||
@@ -103,9 +102,6 @@ public class SearchReplaceForm extends Form {
|
||||
public void applyParams() {
|
||||
String toFind = Utils.hideRegularMetasymbols(tfFind.getText());
|
||||
String toReplace = Utils.hideRegularMetasymbols(tfReplace.getText());
|
||||
System.out.println("toFind=" + toFind);
|
||||
System.out.println("toReplace" + toReplace);
|
||||
System.out.println("============");
|
||||
context.setSearchFor(toFind);
|
||||
context.setMatchCase(registerOn.isSelected());
|
||||
context.setWholeWord(wholeWordOn.isSelected());
|
||||
|
||||
Reference in New Issue
Block a user