jdk/src/share/classes/javax/naming/InitialContext.java
changeset 21285 e740104a04f1
parent 18580 6c4badf4ffba
child 25176 3c2ba9344cbf
--- a/jdk/src/share/classes/javax/naming/InitialContext.java	Thu Oct 17 19:47:47 2013 -0700
+++ b/jdk/src/share/classes/javax/naming/InitialContext.java	Thu Oct 17 22:22:14 2013 -0700
@@ -361,7 +361,7 @@
      * follows.
      * Define a new method that uses this method to get an initial
      * context of the desired subclass.
-     * <p><blockquote><pre>
+     * <blockquote><pre>
      * protected XXXContext getURLOrDefaultInitXXXCtx(Name name)
      * throws NamingException {
      *  Context answer = getURLOrDefaultInitCtx(name);
@@ -377,7 +377,7 @@
      * </pre></blockquote>
      * When providing implementations for the new methods in the subclass,
      * use this newly defined method to get the initial context.
-     * <p><blockquote><pre>
+     * <blockquote><pre>
      * public Object XXXMethod1(Name name, ...) {
      *  throws NamingException {
      *    return getURLOrDefaultInitXXXCtx(name).XXXMethod1(name, ...);