diff --git a/websocket-sharp/Server/WebSocketServiceHost.cs b/websocket-sharp/Server/WebSocketServiceHost.cs
index d9152389..a17c6d77 100644
--- a/websocket-sharp/Server/WebSocketServiceHost.cs
+++ b/websocket-sharp/Server/WebSocketServiceHost.cs
@@ -69,9 +69,7 @@ namespace WebSocketSharp.Server
/// true if the WebSocket service cleans up the inactive sessions periodically;
/// otherwise, false.
///
- public abstract bool KeepClean {
- get; set;
- }
+ public abstract bool KeepClean { get; set; }
///
/// Gets the path to the WebSocket service.
@@ -79,9 +77,7 @@ namespace WebSocketSharp.Server
///
/// A that represents the absolute path to the WebSocket service.
///
- public abstract string Path {
- get;
- }
+ public abstract string Path { get; }
///
/// Gets the access to the sessions in the WebSocket service.
@@ -89,9 +85,7 @@ namespace WebSocketSharp.Server
///
/// A that manages the sessions.
///
- public abstract WebSocketSessionManager Sessions {
- get;
- }
+ public abstract WebSocketSessionManager Sessions { get; }
///
/// Gets the type of the WebSocket service.
@@ -99,9 +93,7 @@ namespace WebSocketSharp.Server
///
/// A that represents the type of the WebSocket service.
///
- public abstract Type Type {
- get;
- }
+ public abstract Type Type { get; }
#endregion