diff --git a/build/NuSpecs/UmbracoCms.nuspec b/build/NuSpecs/UmbracoCms.nuspec
index 05a6f4ca0e..b0f30b9779 100644
--- a/build/NuSpecs/UmbracoCms.nuspec
+++ b/build/NuSpecs/UmbracoCms.nuspec
@@ -22,7 +22,7 @@
not want this to happen as the alpha of the next major is, really, the next major already.
-->
-
+
diff --git a/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj b/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj
index 02e24ddbb6..7c3293183d 100644
--- a/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj
+++ b/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj
@@ -105,7 +105,7 @@
- 8.0.0-alpha.35
+ 8.0.0-alpha.36
diff --git a/src/Umbraco.Web/JavaScript/ServerVariablesParser.cs b/src/Umbraco.Web/JavaScript/ServerVariablesParser.cs
index 6824d02d18..8f27f58143 100644
--- a/src/Umbraco.Web/JavaScript/ServerVariablesParser.cs
+++ b/src/Umbraco.Web/JavaScript/ServerVariablesParser.cs
@@ -2,19 +2,10 @@
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
-namespace Umbraco.Web.UI.JavaScript
-{
- //fixme delete this when Models Builder is updated
- public sealed class ServerVariablesParser : global::Umbraco.Web.JavaScript.ServerVariablesParser
- {
- }
-}
-
namespace Umbraco.Web.JavaScript
{
public class ServerVariablesParser
{
-
///
/// Allows developers to add custom variables on parsing
///
@@ -31,8 +22,6 @@ namespace Umbraco.Web.JavaScript
var json = JObject.FromObject(items);
return vars.Replace(Token, json.ToString());
-
}
-
}
}