From 355bc01a157fe8039675f9bc9ba75aa65dce9f97 Mon Sep 17 00:00:00 2001 From: Chris R Date: Tue, 22 Sep 2015 11:56:46 -0700 Subject: [PATCH] Hosting#358 Move the default address into Hosting. --- .../KestrelServerInformation.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Microsoft.AspNet.Server.Kestrel/KestrelServerInformation.cs b/src/Microsoft.AspNet.Server.Kestrel/KestrelServerInformation.cs index 597c45a4d4..4f53b80303 100644 --- a/src/Microsoft.AspNet.Server.Kestrel/KestrelServerInformation.cs +++ b/src/Microsoft.AspNet.Server.Kestrel/KestrelServerInformation.cs @@ -21,10 +21,6 @@ namespace Microsoft.AspNet.Server.Kestrel { Addresses.Add(url); } - if (Addresses.Count == 0) - { - Addresses.Add("http://+:5000/"); - } } } }