updated coding rules.
[utils] / system / general / src / test / java / org / wamblee / system / adapters / X6.java
index 06b7b5f54421a44451ba964760a1333f1bc9fd71..9535b358dc6ed5bf6bd142da2e311229f4a0af99 100644 (file)
@@ -17,26 +17,26 @@ package org.wamblee.system.adapters;
 
 public class X6 {
     
-    private String _host; 
-    private Integer _port; 
+    private String host; 
+    private Integer port; 
     
        public X6() {
        
        }
 
        public Integer getPort() {
-        return _port;
+        return port;
     }
        
        public void setPort(Integer aPort) {
-        _port = aPort;
+        port = aPort;
     }
        
        public String getHost() {
-        return _host;
+        return host;
     }
        
        public void setHost(String aHost) {
-        _host = aHost;
+        host = aHost;
     }
 }
\ No newline at end of file