--- old/src/java.management/share/classes/java/lang/management/LockInfo.java 2015-08-05 20:44:26.222427484 +0400 +++ new/src/java.management/share/classes/java/lang/management/LockInfo.java 2015-08-05 20:44:26.010427494 +0400 @@ -43,7 +43,7 @@ * two examples of ownable synchronizers provided by the platform. * *

MXBean Mapping

- * LockInfo is mapped to a {@link CompositeData CompositeData} + * {@code LockInfo} is mapped to a {@link CompositeData CompositeData} * as specified in the {@link #from from} method. * * @see java.util.concurrent.locks.AbstractOwnableSynchronizer @@ -59,7 +59,7 @@ private int identityHashCode; /** - * Constructs a LockInfo object. + * Constructs a {@code LockInfo} object. * * @param className the fully qualified name of the class of the lock object. * @param identityHashCode the {@link System#identityHashCode @@ -112,11 +112,11 @@ * * * className - * java.lang.String + * {@code java.lang.String} * * * identityHashCode - * java.lang.Integer + * {@code java.lang.Integer} * * * @@ -154,7 +154,7 @@ *
      * lock.getClass().getName() + '@' + Integer.toHexString(System.identityHashCode(lock))
      * 
- * where lock is the lock object. + * where {@code lock} is the lock object. * * @return the string representation of a lock. */