Ignore:
Timestamp:
01/13/13 17:01:05 (11 years ago)
Author:
adeicke
Message:

Corrected incorrect spelling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • autoquest-core-usability-evaluation/src/main/java/de/ugoe/cs/autoquest/usability/util/TextInputUtil.java

    r1030 r1031  
    2121        for(ITaskTreeNode nodeWithTextInput : nodesWithTextInputEvents) { 
    2222            TextInput textInput = (TextInput) ((IEventTask) nodeWithTextInput).getEventType(); 
    23             allTextInputs.add(splitTextIntoWordsAnsSigns(textInput.getEnteredText())); 
     23            allTextInputs.add(splitTextIntoWordsAndSigns(textInput.getEnteredText())); 
    2424        } 
    2525        return HashMultiset.create(Iterables.concat(allTextInputs)); 
    2626    } 
    2727     
    28     public static Iterable<String> splitTextIntoWordsAnsSigns(String enteredText) { 
     28    public static Iterable<String> splitTextIntoWordsAndSigns(String enteredText) { 
    2929        CharMatcher onlyWords = CharMatcher.WHITESPACE.or(CharMatcher.forPredicate(characterIsJavaIdentifierPartPredicate())); 
    3030        CharMatcher onlySigns = CharMatcher.WHITESPACE.or(CharMatcher.forPredicate(characterIsJavaIdentifierPartPredicate()).negate()); 
Note: See TracChangeset for help on using the changeset viewer.