// and group the tokens into sentences
ArrayList<AceToken> currentSentence = new ArrayList<AceToken>();
int quoteCount = 0;
for (int i = 0; i < tokenList.size(); i ++){
WordToken token = tokenList.get(i);
String tokenText = token.getWord();
AceToken convertedToken = wordTokenToAceToken(token, sentences.size());
// start a new sentence if we skipped 2+ lines (after datelines, etc.)
// or we hit some SGML
// if (token.getNewLineCount() > 1 || AceToken.isSgml(tokenText)) {