Deprecated Java methods not showing as strikethrough in Visual Studio Code
I have this Java method: /** * Old method is deprecated. * @deprecated Use {@link #newMethod()} instead. * @return boolean */ @Deprecated public static boolean oldMethod() { return false; } and then later on: boolean result = oldMethod(); In the…