fix bug with bracket matching when comment starts in column 1

This commit is contained in:
jdf
2010-10-26 10:24:51 +00:00
parent 6833df5a80
commit 42558012c2
@@ -117,7 +117,6 @@ public class Brackets {
final int len = text.length();
for (pos++; pos < len; pos++)
if (text.charAt(pos) == '\n') {
pos++;
return;
}
}