Skip to content

Commit

Permalink
Improve result format adding 'L' before line number
Browse files Browse the repository at this point in the history
  • Loading branch information
takahi-i committed Oct 26, 2017
1 parent e584694 commit 6c6390e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private String addVariationPositions(List<TokenInfo> tokenList) {

private String getTokenString(TokenInfo token) {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("(");
stringBuilder.append("(L");
stringBuilder.append(token.sentence.getLineNumber());
stringBuilder.append(",");
stringBuilder.append(token.element.getOffset());
Expand Down

0 comments on commit 6c6390e

Please sign in to comment.