updated coding rules.
[utils] / system / spring / src / test / java / org / wamblee / system / spring / HelloService2.java
index e9c7708073318446f804ba342ed4d52d3e804cf6..4273ca01deac8a8db47907ba9c5ef8e4fcea1f94 100644 (file)
@@ -19,13 +19,13 @@ import java.util.Properties;
 
 public class HelloService2 {
 
-    private Properties _props;
+    private Properties props;
 
     public HelloService2(Properties aProps) {
-        _props = aProps;
+        props = aProps;
     }
 
     public Properties getProperties() { 
-        return _props; 
+        return props; 
     }
 }