Clean up Skipper structure

This commit is contained in:
Matt Nadareski
2020-07-30 21:07:25 -07:00
parent 88d0d043ef
commit a4b2a4ff17
8 changed files with 423 additions and 359 deletions

View File

@@ -2982,7 +2982,7 @@ The following systems have headers that this program can work with:
List<ParentablePath> files = DirectoryExtensions.GetFilesOnly(Inputs);
foreach (ParentablePath file in files)
{
Skipper.DetectTransformStore(file.CurrentPath, outDir, nostore);
Transform.DetectTransformStore(file.CurrentPath, outDir, nostore);
}
}
}
@@ -3054,7 +3054,7 @@ The following systems have headers that this program can work with:
List<ParentablePath> files = DirectoryExtensions.GetFilesOnly(Inputs);
foreach (ParentablePath file in files)
{
Skipper.RestoreHeader(file.CurrentPath, outDir);
Transform.RestoreHeader(file.CurrentPath, outDir);
}
}
}