Revert "[ALL] String.Empty"

This reverts commit d1df5c2b60.
This commit is contained in:
Matt Nadareski
2017-01-27 16:53:29 -08:00
parent c8142549bb
commit 8d6fa2c908
38 changed files with 500 additions and 500 deletions

View File

@@ -93,8 +93,8 @@ namespace SabreTools
onlyNeeded = false;
// User inputs
string newdat =String.Empty,
outdat = String.Empty;
string newdat ="",
outdat = "";
List<string> inputs = new List<string>();
// Determine which switches are enabled (with values if necessary)
@@ -178,7 +178,7 @@ namespace SabreTools
outdat = args[i];
break;
default:
string temparg = args[i].Replace(""", String.Empty).Replace("file://", String.Empty);
string temparg = args[i].Replace("\"", "").Replace("file://", "");
if (temparg.StartsWith("-") && temparg.Contains("="))
{
@@ -186,7 +186,7 @@ namespace SabreTools
string[] split = temparg.Split('=');
if (split[1] == null)
{
split[1] = String.Empty;
split[1] = "";
}
switch (split[0])