do not restart javadoc parser with the same input stream (IDEA-69558)

This commit is contained in:
anna
2011-05-13 15:25:24 +04:00
parent 861d938bb3
commit 14c4a5f62b
@@ -228,9 +228,9 @@ public abstract class AbstractExternalFilter {
String charset = null;
do {
read = buf.readLine();
if (read != null && read.contains("charset")) {
/*if (read != null && read.contains("charset")) {
charset = read;
}
}*/
}
while (read != null && read.toUpperCase().indexOf(startSection) == -1);