Skip to content

Commit

Permalink
dkpro#1386 - Add further JCas annotations
Browse files Browse the repository at this point in the history
- removed unused variable
  • Loading branch information
az79nefy committed Jun 29, 2019
1 parent 04f2805 commit d47496a
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public class AnnotatedGigawordParser extends DefaultHandler

// variables for reconstructing articles
private StringBuilder currentDocText = new StringBuilder();
private String currentDocId = "";
private Token currentToken;
private String currentWord = "";
private int currentOffsetBegin = 0;
Expand All @@ -65,7 +64,6 @@ public void startElement(String uri, String localName, String qName, Attributes
{
if (qName.equals("DOC")) {
inDocument = true;
currentDocId = attributes.getValue("id");
}
else if (inDocument && qName.equals("sentences")) {
inSentences = true;
Expand Down

0 comments on commit d47496a

Please sign in to comment.