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:
parent
2c30afbfcf
commit
e6518a3aab
3 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue