diff --git a/src/server/Server.java b/src/server/Server.java
index 32b37c5f7d9374f505bbe2a9dc546173673b8acd..b1625f83e9940f2c63e81d7ad13a9ca6b139bde5 100644
--- a/src/server/Server.java
+++ b/src/server/Server.java
@@ -16,10 +16,7 @@ public class Server implements Runnable
 {
 
 	private Paxos paxos;
-	private String host;
-
     private String host;
-
     private int port;
     private Socket socket;
     private final String DEFAULT_HOST = "localhost";
@@ -123,6 +120,7 @@ public class Server implements Runnable
 			}
 		}
 	}
+
         
         public String receiveMessage() throws IOException{
             String temp = null;
@@ -139,5 +137,7 @@ public class Server implements Runnable
     public void run() {
         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
     }
+       	
+
 
-}
\ No newline at end of file
+}