--- old/src/java.naming/share/classes/javax/naming/ldap/Control.java 2015-08-04 13:14:52.500900794 +0300 +++ new/src/java.naming/share/classes/javax/naming/ldap/Control.java 2015-08-04 13:14:52.100900785 +0300 @@ -52,13 +52,13 @@ public interface Control extends java.io.Serializable { /** * Indicates a critical control. - * The value of this constant is true. + * The value of this constant is {@code true}. */ public static final boolean CRITICAL = true; /** * Indicates a non-critical control. - * The value of this constant is false. + * The value of this constant is {@code false}. */ public static final boolean NONCRITICAL = false; @@ -75,7 +75,7 @@ * In other words, if the server receives a critical control * that it does not support, regardless of whether the control * makes sense for the operation, the operation will not be performed - * and an OperationNotSupportedException will be thrown. + * and an {@code OperationNotSupportedException} will be thrown. * @return true if this control is critical; false otherwise. */ public boolean isCritical();