updated coding rules.
[utils] / system / spring / src / test / java / org / wamblee / system / spring / BlaService.java
index 5bbafa1d342c851b8f66bb7c83680e4acaa175ce..5715460aace3193121a702ea243bf46d6a03006a 100644 (file)
 package org.wamblee.system.spring;
 
 public class BlaService {
-       private HelloService _hello; 
+       private HelloService hello; 
        
        public BlaService(HelloService aService) {
                if ( aService == null ) { 
                        throw new IllegalArgumentException("helloService is null"); 
                }
-               _hello = aService; 
+               hello = aService; 
        }
        
        public String execute() { 
-               return _hello.say(); 
+               return hello.say(); 
        }
        
        public void stop() {