Skip to content

Commit

Permalink
Removing unused code.
Browse files Browse the repository at this point in the history
  • Loading branch information
sauliusg committed Feb 28, 2018
1 parent 3413d8f commit 2221cfa
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ private String processLoopBlock() throws IOException {
return processAtomLoopBlock(line);
} else {
logger.warn("Skipping loop block");
//skipUntilEmptyOrCommentLine(line);
return skipLoop(line);
}
}
Expand Down Expand Up @@ -286,14 +285,6 @@ private String skipLoopBody(String line) throws IOException {
return line;
}

private void skipUntilEmptyOrCommentLine(String line) throws IOException {
// skip everything until empty line, or comment line
while (line != null && line.length() > 0 && line.charAt(0) != '#') {
line = input.readLine();
if (line != null) line = line.trim();
}
}

private String processAtomLoopBlock(String firstLine) throws IOException {
int atomLabel = -1; // -1 means not found in this block
int atomSymbol = -1;
Expand Down

0 comments on commit 2221cfa

Please sign in to comment.