Ignore:
Timestamp:
12/08/17 17:06:56 (7 years ago)
Author:
pharms
Message:
  • solved some findbugs issues
Location:
trunk/autoquest-core-usability/src/main/java/de/ugoe/cs/autoquest/usability
Files:
3 edited

Legend:

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

    r1918 r2243  
    177177     * 
    178178     */ 
    179     private class FirstViewActionStatistics { 
     179    private static class FirstViewActionStatistics { 
    180180         
    181181        /** */ 
  • trunk/autoquest-core-usability/src/main/java/de/ugoe/cs/autoquest/usability/DefaultValueRule.java

    r2146 r2243  
    747747            return "group(" + groupedTargets.size() + " targets, view " + super.getView() + ")"; 
    748748        } 
     749 
     750        /* (non-Javadoc) 
     751         * @see de.ugoe.cs.autoquest.usability.DefaultValueRule.ValueSelectionTarget#equals(java.lang.Object) 
     752         */ 
     753        @Override 
     754        public boolean equals(Object obj) { 
     755            // Use parent implementation as the parent class will point to the parent GUI Element representing this group 
     756            return super.equals(obj); 
     757        } 
     758 
     759        /* (non-Javadoc) 
     760         * @see de.ugoe.cs.autoquest.usability.DefaultValueRule.ValueSelectionTarget#hashCode() 
     761         */ 
     762        @Override 
     763        public int hashCode() { 
     764            // Use parent implementation as the parent class will point to the parent GUI Element representing this group 
     765            return super.hashCode(); 
     766        } 
    749767    } 
    750768} 
  • trunk/autoquest-core-usability/src/main/java/de/ugoe/cs/autoquest/usability/MisleadingClickCueRule.java

    r2216 r2243  
    173173     * 
    174174     */ 
    175     private class UselessClickStatistics { 
     175    private static class UselessClickStatistics { 
    176176         
    177177        /** */ 
Note: See TracChangeset for help on using the changeset viewer.