Remove Unnecessary debug message
Fixed logic to find external transition when attempting to delete a procedure Turn-on Table Shrinking Generically
This commit is contained in:
@@ -379,8 +379,8 @@ namespace Volian.Controls.Library
|
||||
{
|
||||
if (rs.ReplaceWord.Contains("{RO}"))
|
||||
{
|
||||
if (_MyItemInfo.InList(34770,34771,34782,34882,34886,34916,34891,35121,36361))
|
||||
Console.WriteLine("FixDiffUnitROReplaceWords jcb");
|
||||
//if (_MyItemInfo.InList(34770,34771,34782,34882,34886,34916,34891,35121,36361))
|
||||
// Console.WriteLine("FixDiffUnitROReplaceWords jcb");
|
||||
string oldvalue = text;
|
||||
string replaceWord = rs.ReplaceWord;
|
||||
string replaceWord2 = Regex.Replace( replaceWord,@"(\{RO\})([0-9,]+)(\{RO\})",@"\\v <START]\\v0 ($2)\\v");
|
||||
@@ -2101,7 +2101,7 @@ namespace Volian.Controls.Library
|
||||
}
|
||||
string preceedingText = text.Substring(0, offset + foundMatch.MyMatch.Index);
|
||||
int ndxBold = preceedingText.LastIndexOf(@"\b");
|
||||
if (ndxBold > -1 && preceedingText.Length>(ndxBold+2) && preceedingText[ndxBold + 2] != '0' && with.Contains(@"\b "))
|
||||
if (ndxBold > -1 && preceedingText.Length>( ndxBold + 2) && preceedingText[ndxBold + 2] != '0' && with.Contains(@"\b "))
|
||||
{
|
||||
with = with.Replace(@"\b ","");
|
||||
with = with.Replace(@"\b0 ","");
|
||||
|
Reference in New Issue
Block a user