updated coding rules.
[utils] / support / general / src / main / java / org / wamblee / conditions / FixedCondition.java
index eff83b1b75d4ffb6e03a58272b87051c90cf89c0..d9848d7c2350af34e5bd66846bed560320844680 100644 (file)
@@ -23,21 +23,21 @@ package org.wamblee.conditions;
  */
 public class FixedCondition<T> implements Condition<T> {
     
-    private boolean _value; 
+    private boolean value; 
     
     /**
      * Constructs the condition. 
      * @param aValue Fixed value of the condition. 
      */
     public FixedCondition(boolean aValue) { 
-        _value = aValue; 
+        value = aValue; 
     }
 
     /* (non-Javadoc)
      * @see org.wamblee.conditions.Condition#matches(T)
      */
     public boolean matches(T aObject) {
-        return _value; 
+        return value; 
     }
 
 }