I use strikethrough to represent deprecated fields and methods in a class diagram.
This renders nicely, _unless_ the method is also static.
For example:
class Test {
+normalMethod(): void
+--deprecatedMethod--(): void
{static} +staticMethod(): void
{static} +--deprecatedStaticMethod--(): void
}
Gets rendered as:
What is the recommended way to represent static deprecated methods?