updated coding rules.
[utils] / support / general / src / test / java / org / wamblee / conditions / LessThanCondition.java
index 06ab192a781001cf2f2d1e9046325486072215c9..4f8e419c5c7b36ae5ed0eff73d69aa378320937a 100644 (file)
@@ -23,17 +23,17 @@ package org.wamblee.conditions;
  */
 public class LessThanCondition implements Condition<Integer> {
     
-    private int _value; 
+    private int value; 
     
     public LessThanCondition(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; 
     }
 
 }