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
Applying auto-fix "kills" code comments when moving the opening brace to the same line, which may not be desirable as comments could provide relevant code information and should be preserved.
Before auto-fix:
if error.localizedDescription.hasPrefix("CLFC-01449")// Another item with the same name exists{// ...}
After auto-fix:
if error.localizedDescription.hasPrefix("CLFC-01449"){// ...}
The text was updated successfully, but these errors were encountered:
New Issue Checklist
Bug Description
Applying auto-fix "kills" code comments when moving the opening brace to the same line, which may not be desirable as comments could provide relevant code information and should be preserved.
Before auto-fix:
After auto-fix:
The text was updated successfully, but these errors were encountered: