(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / adapters / FixedValueProvider.java
index e80567477ba2aa96a2b2b62ee6921a2ef808f5d6..b1ea1cc5de479603f3cd8361e877284c0e193d5c 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.system.adapters;
 
 import org.wamblee.system.core.Scope;
@@ -23,7 +23,7 @@ import org.wamblee.system.core.Scope;
  * @author Erik Brakkee
  */
 class FixedValueProvider implements ValueProvider {
-    private Object _value;
+    private Object value;
 
     /**
      * Constructs the value.
@@ -32,11 +32,11 @@ class FixedValueProvider implements ValueProvider {
      *            Value to construct.
      */
     public FixedValueProvider(Object aValue) {
-        _value = aValue;
+        value = aValue;
     }
 
     @Override
     public Object getValue(Scope aScope) {
-        return _value;
+        return value;
     }
 }