File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -759,7 +759,7 @@ private static string FilterIgnoredChanges(string line)
759759 . Replace ( "uint.MinValue" , "0" ) ;
760760 // Normalize hex literals (0xFF -> 255).
761761 line = s_HexLiteralRegex. Replace ( line ,
762- m => Convert . ToUInt64 ( m . Groups [ 1 ] . Value , 16 ) . ToString ( ) ) ;
762+ m => Convert . ToUInt64 ( m . Groups [ 1 ] . Value , 16 ) . ToString ( ) ) ;
763763 // Normalize bitwise shift expressions (1 << 8 -> 256).
764764 line = s_ShiftExprRegex. Replace ( line ,
765765 m => ( ulong . Parse ( m . Groups [ 1 ] . Value ) << int . Parse ( m . Groups [ 2 ] . Value ) ) . ToString ( ) ) ;
@@ -799,7 +799,7 @@ private static string FilterIgnoredChanges(string line)
799799
800800 ++ pos; // Move past the closing ']'.
801801
802- // The attribute must be followed by a space.
802+ // The attribute must be followed by a space.
803803 // If it is the last character there is nothing else to strip, so out.
804804 if ( pos >= line . Length || line [ pos ] != ' ' )
805805 return line;
You can’t perform that action at this time.
0 commit comments