chore: Add explicit 'return' or 'continue' before local functions

This commit is contained in:
uye
2023-08-07 01:07:55 +08:00
committed by GitHub
parent 6c37108819
commit a7658ab9fc

View File

@@ -2345,6 +2345,8 @@ namespace MaaWpfGui.ViewModels.UI
return;
}
return;
static bool TimeLess(int lHour, int lMin, int rHour, int rMin) => (lHour != rHour) ? (lHour < rHour) : (lMin <= rMin);
}