[SalesForce] Recieving the following error while trying to comment out Apex Trigger: “Error: Compile Error: Unexpected token ‘‘. at line 65 column 1 “

I'm a point and click admin with little Apex experience in need of some assitance. I am attempting to Comment out and Apex Class in my Organization, however when attempting to update the Trigger in sandbox I receive the following error message: "Error: Compile Error: Unexpected token ''. at line 65 column 1"

Here is a snip of my code: enter image description here

Any assistance you could provide would be greatly appreciated. I'd rather not have to overpay a consultant to take care of this.

Best Answer

To comment out this trigger so that it does nothing and contains no references to any classes, insert on line 4: /* and on line 63: */

Related Topic