Remove unused IInstance properties

This commit is contained in:
Jordan Brown
2018-09-15 14:05:26 -04:00
parent cad7ddc10f
commit b6b8d8e06b
2 changed files with 2 additions and 21 deletions
@@ -26,12 +26,7 @@ namespace Tgstation.Server.Host.Components
/// The <see cref="IByondManager"/> for the <see cref="IInstance"/>
/// </summary>
IByondManager ByondManager { get; }
/// <summary>
/// The <see cref="IDreamMaker"/> for the <see cref="IInstance"/>
/// </summary>
IDreamMaker DreamMaker { get; }
/// <summary>
/// The <see cref="IWatchdog"/> for the <see cref="IInstance"/>
/// </summary>
@@ -42,11 +37,6 @@ namespace Tgstation.Server.Host.Components
/// </summary>
IChat Chat { get; }
/// <summary>
/// The <see cref="ICompileJobConsumer"/> for the <see cref="IInstance"/>
/// </summary>
ICompileJobConsumer CompileJobConsumer { get; }
/// <summary>
/// The <see cref="StaticFiles.IConfiguration"/> for the <see cref="IInstance"/>
/// </summary>
@@ -58,12 +48,6 @@ namespace Tgstation.Server.Host.Components
/// <returns>The latest <see cref="CompileJob"/> if it exists</returns>
CompileJob LatestCompileJob();
/// <summary>
/// Get the <see cref="Api.Models.Instance"/> associated with the <see cref="IInstance"/>
/// </summary>
/// <returns>The <see cref="Api.Models.Instance"/> associated with the <see cref="IInstance"/></returns>
Api.Models.Instance GetMetadata();
/// <summary>
/// Rename the <see cref="IInstance"/>
/// </summary>
@@ -266,10 +266,7 @@ namespace Tgstation.Server.Host.Components
break;
}
}
/// <inheritdoc />
public Api.Models.Instance GetMetadata() => metadata.CloneMetadata();
/// <inheritdoc />
public void Rename(string newName)
{