Deprecation is the process of giving code a status (deprecated) that indicates that the code should be avoided.

learn more… | top users | synonyms

5
votes
0answers
72 views

Developer name already exists for given entity or has been previously used. Please choose a different name

In my managed ISV package I have many deprecated classes. Some of the are global and I cannot change their signature and just mark them as @deprecated. To make it more obvious that a class is ...
0
votes
1answer
26 views

How to deprecate a single function in a global interface

Can I deprecate a single function from a global interface that has been managed released? I was using this: global interface MyInterface { String getSomeString(); @deprecated Integer ...