AS3: Better imports, uses

Formatting code
This commit is contained in:
Jindra Petk
2013-01-01 14:03:50 +01:00
parent e018eb96a3
commit 4fd93d3e57
24 changed files with 166 additions and 87 deletions

View File

@@ -83,7 +83,7 @@ public class DecompiledEditorPane extends LineMarkedEditorPane implements MouseL
getCaret().setVisible(true);
int pos = getCaretPosition();
classIndex = -1;
for (Highlighting cm : classHighlights) {
if ((pos >= cm.startPos) && (pos < cm.startPos + cm.len)) {
classIndex = (int) cm.offset;