Changeset 1960


Ignore:
Timestamp:
06/02/15 13:17:55 (9 years ago)
Author:
pharms
Message:
  • correction in smell detection
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-usability/src/main/java/de/ugoe/cs/autoquest/usability/DataEntryMethodChangeRule.java

    r1918 r1960  
    9292     */ 
    9393    private Map<ITask, Integer> getDataEntryMethodChangeRatios(Collection<ITask> tasks) { 
    94         Map<ITask, Integer> impatienceRatios = new HashMap<ITask, Integer>(); 
     94        Map<ITask, Integer> methodChangeRatios = new HashMap<ITask, Integer>(); 
    9595         
    9696        for (ITask task : tasks) { 
     
    9999                 
    100100                if (ratio > 0) { 
    101                     impatienceRatios.put(task, ratio); 
     101                    methodChangeRatios.put(task, ratio); 
    102102                } 
    103103            } 
    104104        } 
    105105         
    106         return impatienceRatios; 
     106        return methodChangeRatios; 
    107107    } 
    108108 
     
    142142 
    143143            for (IEventTaskInstance current : terminalNodes) { 
    144                 if (previous == null) { 
    145                     previous = current; 
    146                 } 
    147                 else if (dataEntryMethodChanges(previous, current)) { 
     144                if ((previous != null) && (dataEntryMethodChanges(previous, current))) { 
    148145                    changeCount++; 
    149146                } 
     147                 
     148                previous = current; 
    150149            } 
    151150 
Note: See TracChangeset for help on using the changeset viewer.