remove extra space

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1296814 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2012-03-04 14:27:33 +00:00
parent 430365f7cc
commit 722dec4084
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ public class TokenStreamToDot {
final int endOffset = offsetAtt.endOffset();
//System.out.println("start=" + startOffset + " end=" + endOffset + " len=" + inputText.length());
if (inputText != null) {
arcLabel += " / " + inputText.substring(startOffset, endOffset);
arcLabel += " / " + inputText.substring(startOffset, endOffset);
} else {
arcLabel += " / " + startOffset + "-" + endOffset;
}