Projects >> JGAAP >>5b00ae9c2563a1a9559d26cc38f2a8c6e275653f

Chunk
Conflicting content
		List> out = classifier.classify(fileContents);
		for (List sentence : out) {
			for (CoreLabel word : sentence) {
<<<<<<< HEAD
				//System.out.println(word.word()+"\t" + word.get(AnswerAnnotation.class));
=======
//				System.out.println(word.word()+"\t" + word.get(AnswerAnnotation.class));
>>>>>>> b4f42d741606a24592359a5af4321290f7eaed0a
				if (!word.get(AnswerAnnotation.class).equals("O")) {
					eventSet.addEvent(new Event(word.word(), this));
//					System.out.println(word.word()+"\t" + word.get(AnswerAnnotation.class));  // This can be removed.  Just shows each word being analyzed.
Solution content
		List> out = classifier.classify(fileContents);
		for (List sentence : out) {
			for (CoreLabel word : sentence) {
				if (!word.get(AnswerAnnotation.class).equals("O")) {
					eventSet.addEvent(new Event(word.word(), this));
//					System.out.println(word.word()+"\t" + word.get(AnswerAnnotation.class));  // This can be removed.  Just shows each word being analyzed.
File
StanfordNamedEntityRecognizer.java
Developer's decision
None
Kind of conflict
Comment