--- old/src/share/classes/javax/security/sasl/SaslClient.java 2013-06-10 10:38:20.293878421 +0100 +++ new/src/share/classes/javax/security/sasl/SaslClient.java 2013-06-10 10:38:20.021878427 +0100 @@ -38,13 +38,13 @@ *

* Here's an example of how an LDAP library might use a SaslClient. * It first gets an instance of a SaslClient: - *

+ *
{@code
  * SaslClient sc = Sasl.createSaslClient(mechanisms,
  *     authorizationId, protocol, serverName, props, callbackHandler);
- *
+ *}
* It can then proceed to use the client for authentication. * For example, an LDAP library might use the client as follows: - *
+ *
{@code
  * // Get initial response and send to server
  * byte[] response = (sc.hasInitialResponse() ? sc.evaluateChallenge(new byte[0]) :
  *     null);
@@ -74,7 +74,7 @@
  *      ldap.out = new SecureOutputStream(sc, ldap.out);
  *    }
  * }
- *
+ *}
* * If the mechanism has an initial response, the library invokes * evaluateChallenge() with an empty