Summary
-------
Update `com.sun.management.OperatingSystemMXBean` class to correct the links in the javadoc.
Problem
-------
Current javadoc for method `getTotalPhysicalMemorySize()` uses links to non-existing method `getMemorySize()` instead of links to method `getTotalMemorySize()`.
Solution
--------
Update javadoc for method `getTotalPhysicalMemorySize()` to replace links to `getMemorySize()` method with links to method `getTotalMemorySize()`.
Specification
-------------
Update `com.sun.management.OperatingSystemMXBean` class as below:
@@ -110,11 +110,11 @@
/**
* Returns the total amount of physical memory in bytes.
*
- * @deprecated Use {@link #getMemorySize()} instead of
+ * @deprecated Use {@link #getTotalMemorySize()} instead of
* this historically named method.
*
* @implSpec This implementation must return the same value
- * as {@link #getMemorySize()}.
+ * as {@link #getTotalMemorySize()}.
*
* @return the total amount of physical memory in bytes.
*/