Skip to content

Commit

Permalink
Removed dependency on Stanford CoreNLP
Browse files Browse the repository at this point in the history
  • Loading branch information
apease committed Feb 17, 2017
1 parent f2c5f46 commit b7543c6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -125,7 +125,7 @@ public class SigmaMockTestBase {

List<String> recognizedCaseRolesCapitalized = Lists.newArrayList();
for(String str : RECOGNIZED_CASE_ROLES) {
recognizedCaseRolesCapitalized.add(edu.stanford.nlp.util.StringUtils.capitalize(str));
recognizedCaseRolesCapitalized.add(Character.toUpperCase(str.charAt(0)) + str.substring(1));
}

List<String> entityList = Lists.newArrayList(RECOGNIZED_PROCESSES);
Expand Down

0 comments on commit b7543c6

Please sign in to comment.