Brackets move

Brackets move

I am developing scripts and noticed that the brackets move when I save and reload the script

Original code

 else if (cws.Address_Line1.contains("SUITE"))
        {
            cws.POSTAL_DELIVERY_TYPE = "SUITE";
        }

Code after saving

 else if (cws.Address_Line1).contains("SUITE")
        {
            cws.POSTAL_DELIVERY_TYPE = "SUITE";
        }

When I attempt to edit the script, I get error because the brackets have moved. Can you please investigate?