put debug statements inside #if DEBUG
This commit is contained in:
parent
2e83eb00ad
commit
396839f8ee
@ -177,8 +177,10 @@ namespace DataLoader
|
|||||||
// Convert dash to a non-breaking dash. This is a unicode character.
|
// Convert dash to a non-breaking dash. This is a unicode character.
|
||||||
// This character will be used in veproms rather than a dash.
|
// This character will be used in veproms rather than a dash.
|
||||||
//if the dash is preceeded byte a token remove the space following the token
|
//if the dash is preceeded byte a token remove the space following the token
|
||||||
|
#if DEBUG
|
||||||
if (s2.Contains(@"\super "))
|
if (s2.Contains(@"\super "))
|
||||||
Console.WriteLine("Here");
|
Console.WriteLine("Here");
|
||||||
|
#endif
|
||||||
s2 = Regex.Replace(s2, @"(\\[^ \\?]*) \-", @"$1\u8209?");
|
s2 = Regex.Replace(s2, @"(\\[^ \\?]*) \-", @"$1\u8209?");
|
||||||
s2 = s2.Replace("-", @"\u8209?");
|
s2 = s2.Replace("-", @"\u8209?");
|
||||||
//Remove spaces between comment end nad Next token
|
//Remove spaces between comment end nad Next token
|
||||||
|
Loading…
x
Reference in New Issue
Block a user