From 6ca16ee3b8f693cf7e7c7bb4979fdf2df3e7af89 Mon Sep 17 00:00:00 2001
From: Alexander Stepanov <avstepan@openjdk.org>
Date: Thu, 20 Aug 2015 13:28:35 +0300
Subject: [PATCH] 8132478: [tidy] three new warnings from java docs (java.net,
 javax.annotation)

Minor docs cleanup (jaxws part)

Reviewed-by: lancea
---
 .../share/classes/javax/annotation/PostConstruct.java            | 1 -
 .../share/classes/javax/annotation/PreDestroy.java               | 1 -
 2 files changed, 2 deletions(-)

diff --git a/jaxws/src/java.annotations.common/share/classes/javax/annotation/PostConstruct.java b/jaxws/src/java.annotations.common/share/classes/javax/annotation/PostConstruct.java
index 03c9328a420..e8ba56f1b24 100644
--- a/jaxws/src/java.annotations.common/share/classes/javax/annotation/PostConstruct.java
+++ b/jaxws/src/java.annotations.common/share/classes/javax/annotation/PostConstruct.java
@@ -39,7 +39,6 @@ import static java.lang.annotation.RetentionPolicy.*;
  * method can be annotated with this annotation. The method on which the
  * PostConstruct annotation is applied MUST fulfill all of the following
  * criteria:
- * <p>
  * <ul>
  * <li>The method MUST NOT have any parameters except in the case of
  * interceptors in which case it takes an InvocationContext object as
diff --git a/jaxws/src/java.annotations.common/share/classes/javax/annotation/PreDestroy.java b/jaxws/src/java.annotations.common/share/classes/javax/annotation/PreDestroy.java
index 28e9ba4dcf5..8cf4b987491 100644
--- a/jaxws/src/java.annotations.common/share/classes/javax/annotation/PreDestroy.java
+++ b/jaxws/src/java.annotations.common/share/classes/javax/annotation/PreDestroy.java
@@ -38,7 +38,6 @@ import static java.lang.annotation.RetentionPolicy.*;
  * except the application client container in Java EE 5. The method on which
  * the PreDestroy annotation is applied MUST fulfill all of the following
  * criteria:
- * <p>
  * <ul>
  * <li>The method MUST NOT have any parameters except in the case of
  * interceptors in which case it takes an InvocationContext object as