удаление отладочной печати сравнения и не только
This commit is contained in:
@@ -340,7 +340,6 @@ public class CallbackForm implements FormWithSplitters, CallbackWindow {
|
||||
currentBugReportTabs.setSelectedIndex(2);
|
||||
}
|
||||
public void SwitchListeners(boolean on) {
|
||||
//System.out.println("switching listeners " + on);
|
||||
if (on) {
|
||||
BugReportDescriptionAddition.getDocument().addDocumentListener(descriptionAdditionListener);
|
||||
BugReportCommentAddition.getDocument().addDocumentListener(commentAdditionListener);
|
||||
|
||||
@@ -310,14 +310,12 @@ public class FileForm implements FileWindow, FormWithSplitters {
|
||||
//если выделяем строку из графа, то тоже надо отключиьт события.
|
||||
//чтобы по ней не начался поиск.
|
||||
if (events_on && line_changed) {
|
||||
// System.out.println("Search in graphs by line...");
|
||||
if (loopsForm.getTree() != null)
|
||||
loopsForm.getTree().SelectNodeByCriteria(current_file_line);
|
||||
if (functionsForm.getTree() != null)
|
||||
functionsForm.getTree().SelectNodeByCriteria(current_file_line);
|
||||
if (arraysForm.getTree() != null)
|
||||
arraysForm.getTree().SelectNodeByCriteria(current_file_line);
|
||||
// System.out.println("DONE");
|
||||
}
|
||||
}
|
||||
@Override
|
||||
|
||||
@@ -236,7 +236,6 @@ public class MainForm extends Form implements MainWindow {
|
||||
if (getTestingWindow() != null)
|
||||
getTestingWindow().ShowAll();
|
||||
UI.windowsStack.push(this);
|
||||
System.out.println("New Front Window");
|
||||
super.Show();
|
||||
}
|
||||
@Override
|
||||
|
||||
@@ -112,15 +112,12 @@ public class ProjectForm implements FormWithSplitters, ProjectWindow {
|
||||
}
|
||||
@Override
|
||||
public void ShowSelectedDirectory() {
|
||||
System.out.println(Current.getSelectedDirectory().getAbsolutePath());
|
||||
}
|
||||
@Override
|
||||
public void ShowSelectedFile() {
|
||||
System.out.println(Current.getSelectedFile().file.getAbsolutePath());
|
||||
}
|
||||
@Override
|
||||
public void ShowNoSelectedFile() {
|
||||
System.out.println("?");
|
||||
}
|
||||
@Override
|
||||
public void ShowProjectSapforLog() {
|
||||
|
||||
@@ -248,10 +248,6 @@ public class SapforPackagesComparisonForm {
|
||||
//--
|
||||
for (SapforTask task1 : package1.package_json.tasks) {
|
||||
SapforTask task2 = package2.package_json.getTaskByKey(task1.getUniqueKey());
|
||||
//---
|
||||
for (SapforVersion_json version : task1.versions) {
|
||||
System.out.println(version + ":" + version.comparisonState);
|
||||
}
|
||||
}
|
||||
//---
|
||||
package1.package_json.buildComparisonTree(package1);
|
||||
|
||||
@@ -80,7 +80,6 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
|
||||
if (events_on) {
|
||||
events_on=false;
|
||||
SC66.setDividerLocation(SC65.getDividerLocation());
|
||||
System.out.println("Left");
|
||||
events_on=true;
|
||||
}
|
||||
}
|
||||
@@ -91,7 +90,6 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
|
||||
if (events_on) {
|
||||
events_on=false;
|
||||
SC65.setDividerLocation(SC66.getDividerLocation());
|
||||
System.out.println("Right");
|
||||
events_on=true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user