This commit is contained in:
John Lewin 2018-11-02 07:33:44 -07:00
parent 358f4d02ac
commit b61511da81
2 changed files with 2 additions and 5 deletions

View file

@ -88,10 +88,7 @@ namespace MatterHackers.MatterControl.Library
public ILibraryContainer ActiveContainer
{
get
{
return activeContainer;
}
get => activeContainer;
set
{
if (activeContainer == value)

View file

@ -128,7 +128,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
public static string PathToExportGcodeFolder
{
get { return TestContext.CurrentContext.ResolveProjectPath(4, "Tests", "TestData", "ExportedGcode", runName); }
get => TestContext.CurrentContext.ResolveProjectPath(4, "Tests", "TestData", "ExportedGcode", runName);
}
public static string GetTestItemPath(string queueItemToLoad)