You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Statements that have optional braces should always break. I believe they are
if
else
while
foreach
for
if (behaviors != null) foreach (var behavior in behaviors) AddBehavior(behavior);
// should be
if (behaviors != null)
foreach (var behavior in behaviors)
AddBehavior(behavior);
The text was updated successfully, but these errors were encountered:
Statements that have optional braces should always break. I believe they are
The text was updated successfully, but these errors were encountered: