Skip to content

Commit 8cad4f4

Browse files
committed
more scrubbing
1 parent 55713f8 commit 8cad4f4

4 files changed

Lines changed: 260 additions & 305 deletions

File tree

java/src/processing/mode/java/ErrorColumn.java

Lines changed: 0 additions & 301 deletions
This file was deleted.

java/src/processing/mode/java/JavaEditor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public class JavaEditor extends Editor {
8383
protected VariableInspector inspector;
8484
protected JMenuItem inspectorItem;
8585

86-
private ErrorColumn errorColumn;
86+
private MarkerColumn errorColumn;
8787

8888
protected JScrollPane errorTableScrollPane;
8989
protected XQErrorTable errorTable;
@@ -164,7 +164,7 @@ public void actionPerformed(ActionEvent e) {
164164
// remove the text area temporarily
165165
box.remove(2);
166166
textAndError.setLayout(new BorderLayout());
167-
errorColumn = new ErrorColumn(this, textarea.getMinimumSize().height);
167+
errorColumn = new MarkerColumn(this, textarea.getMinimumSize().height);
168168
textAndError.add(errorColumn, BorderLayout.EAST);
169169
textarea.setBounds(0, 0, errorColumn.getX() - 1, textarea.getHeight());
170170
textAndError.add(textarea);

0 commit comments

Comments
 (0)