1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-11 12:54:15 +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". // 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) { if (i >= 0) {
// Find a "d", so look back to see how many "d" that we can find. // Find a "d", so look back to see how many "d" that we can find.
@ -409,7 +409,7 @@ namespace System {
// //
// Find first "d" // 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) { if (i < format.Length) {
repeatVal = 0; repeatVal = 0;

View file

@ -2441,7 +2441,7 @@ namespace IDE.ui
sourceEditWidgetContent.PersistentTextPositions.Remove(persistentTextPositon); sourceEditWidgetContent.PersistentTextPositions.Remove(persistentTextPositon);
delete persistentTextPositon; delete persistentTextPositon;
} }
}; }
mTargetEditWidget.Content.EnsureCursorVisible(); mTargetEditWidget.Content.EnsureCursorVisible();
if ((insertType != null) && (insertText.Length > 0)) if ((insertType != null) && (insertText.Length > 0))

View file

@ -1292,7 +1292,7 @@ namespace IDE.ui
} }
return showBorder; return showBorder;
}; }
bool leftBorder = neighborCoverageFunc(-1); bool leftBorder = neighborCoverageFunc(-1);
bool rightBorder = neighborCoverageFunc(1); bool rightBorder = neighborCoverageFunc(1);
@ -1344,7 +1344,7 @@ namespace IDE.ui
showBorder = !neighborEntry.mIsSelected; showBorder = !neighborEntry.mIsSelected;
} }
return showBorder; return showBorder;
}; }
bool leftBorder = neighborCoverageFunc(-1); bool leftBorder = neighborCoverageFunc(-1);
bool rightBorder = neighborCoverageFunc(1); bool rightBorder = neighborCoverageFunc(1);