1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-20 08:58:00 +02:00

Removed some errant semicolons

This commit is contained in:
Brian Fiete 2020-03-02 07:03:42 -08:00
parent 2c30afbfcf
commit e6518a3aab
3 changed files with 5 additions and 5 deletions

View file

@ -386,7 +386,7 @@ namespace System {
//
// Find first "d".
for (i = index - 1; i >= 0 && format[i] != patternToMatch; i--) { /*Do nothing here */ };
for (i = index - 1; i >= 0 && format[i] != patternToMatch; i--) { /*Do nothing here */ }
if (i >= 0) {
// Find a "d", so look back to see how many "d" that we can find.
@ -409,7 +409,7 @@ namespace System {
//
// Find first "d"
for (i = index + tokenLen; i < format.Length && format[i] != patternToMatch; i++) { /* Do nothing here */ };
for (i = index + tokenLen; i < format.Length && format[i] != patternToMatch; i++) { /* Do nothing here */ }
if (i < format.Length) {
repeatVal = 0;