удаление отладочной печати сравнения и не только
This commit is contained in:
@@ -25,8 +25,6 @@ public class BaseDirective extends BasicCompletion {
|
||||
return visible = isMatch();
|
||||
}
|
||||
protected CaretInfo getCaretInfo() {
|
||||
// System.out.println(getOwner());
|
||||
// System.out.println(getOwner().getEditor());
|
||||
return getOwner().getEditor().getCaretInfo();
|
||||
}
|
||||
protected SapforAutoComplete getOwner() {
|
||||
|
||||
@@ -163,7 +163,6 @@ public class SPFEditor extends BaseEditor implements SPFEditorInterface {
|
||||
ClearGOCVHighlights();
|
||||
for (int lineNum : file.gcov_info.line_info.keySet()) {
|
||||
Pair<Long, Integer> p = file.gcov_info.line_info.get(lineNum);
|
||||
//System.out.println((lineNum + 1) + ": " + p.getKey() + " " + p.getValue() + "%");
|
||||
Color color = never;
|
||||
if (p.getKey() > 0) {
|
||||
color = (p.getValue() >= Global.db.settings.get(SettingName.GCOVLimit).toInt32()) ?
|
||||
|
||||
@@ -65,7 +65,6 @@ public class FilesTree extends StyledTree {
|
||||
}
|
||||
@Override
|
||||
public void SelectionAction(TreePath e) {
|
||||
System.out.println("Select");
|
||||
DefaultMutableTreeNode node = (DefaultMutableTreeNode) e.getLastPathComponent();
|
||||
Current.set(Current.ProjectNode, node);
|
||||
Object o = node.getUserObject();
|
||||
@@ -97,7 +96,6 @@ public class FilesTree extends StyledTree {
|
||||
public void LeftMouseAction1() {
|
||||
if (Global.files_multiselection && Current.getSelectedFile() != null) {
|
||||
Current.getSelectedFile().SwitchSelection();
|
||||
System.out.println("LMC "+Current.getSelectedFile().name+" : "+Current.getSelectedFile().isSelected());
|
||||
updateUI();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user