updated coding rules.
[utils] / support / general / src / test / java / org / wamblee / conditions / GreaterThanCondition.java
index bdb9589763d02b179ae8621759cb3f254cf7cd19..decdb53b91cb0a975d0afbf3c6fd397cbdb270ee 100644 (file)
@@ -23,17 +23,17 @@ package org.wamblee.conditions;
  */
 public class GreaterThanCondition implements Condition<Integer> {
     
-    private int _value; 
+    private int value; 
     
     public GreaterThanCondition(int aValue) { 
-        _value = aValue; 
+        value = aValue; 
     }
     
     /* (non-Javadoc)
      * @see org.wamblee.conditions.Condition#matches(T)
      */
     public boolean matches(Integer aObject) {
-        return aObject > _value; 
+        return aObject > value; 
     }
 
 }