Commit 1272ae2d authored by Skylot's avatar Skylot

fix(gui): don't skip indexing code lines starting with '}' (#426)

parent ddaf0375
...@@ -69,15 +69,17 @@ public class TextSearchIndex { ...@@ -69,15 +69,17 @@ public class TextSearchIndex {
int count = lines.size(); int count = lines.size();
for (int i = 0; i < count; i++) { for (int i = 0; i < count; i++) {
StringRef line = lines.get(i); StringRef line = lines.get(i);
if (line.length() != 0 && line.charAt(0) != '}') { int lineLength = line.length();
int lineNum = i + 1; if (lineLength == 0 || (lineLength == 1 && line.charAt(0) == '}')) {
JavaNode node = linesInfo.getJavaNodeByLine(lineNum); continue;
CodeNode codeNode = new CodeNode(nodeCache.makeFrom(node == null ? cls : node), lineNum, line); }
if (strRefSupported) { int lineNum = i + 1;
codeIndex.put(line, codeNode); JavaNode node = linesInfo.getJavaNodeByLine(lineNum);
} else { CodeNode codeNode = new CodeNode(nodeCache.makeFrom(node == null ? cls : node), lineNum, line);
codeIndex.put(line.toString(), codeNode); if (strRefSupported) {
} codeIndex.put(line, codeNode);
} else {
codeIndex.put(line.toString(), codeNode);
} }
} }
} catch (Exception e) { } catch (Exception e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment