Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-16 21:55:21 +0000
committerAlexander Kurtakov2019-02-16 21:55:21 +0000
commit8ab02c90a5903c074e2921a0045198cb9bce9e4e (patch)
tree4d0bd3e38c506e6c351e1197291db46544d97a05 /bundles/org.eclipse.team.ui/src/org/eclipse
parentbef857faf1290aab5cfcf820bfd596a723404a6c (diff)
downloadeclipse.platform.team-8ab02c90a5903c074e2921a0045198cb9bce9e4e.tar.gz
eclipse.platform.team-8ab02c90a5903c074e2921a0045198cb9bce9e4e.tar.xz
eclipse.platform.team-8ab02c90a5903c074e2921a0045198cb9bce9e4e.zip
Bug 543933 - Build javadocs with Java 11I20190218-0600I20190217-1800
Fix javadoc warnings catched by Java 11 tool with XDoclint:html. Change-Id: I18df76d31c00c0d19776a6c0fe5e627528e75c04 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryPage.java3
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/AbstractSynchronizeParticipant.java1
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipant.java5
3 files changed, 5 insertions, 4 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryPage.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryPage.java
index 77fd673cc..160ab3d2f 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryPage.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryPage.java
@@ -162,12 +162,13 @@ public interface IHistoryPage {
* registered.
* <p>
* The changes supported by the page are as follows:
+ * </p>
* <ul>
* <li><code>P_NAME</code>- indicates the name
* of the page has changed</li>
* <li><code>P_DESCRIPTION</code>- indicates the
* description of the page has changed</li>
- * </ul></p>
+ * </ul>
* <p>
* Clients may define additional properties as required.
* </p>
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/AbstractSynchronizeParticipant.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/AbstractSynchronizeParticipant.java
index ad52baf71..753c5bca8 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/AbstractSynchronizeParticipant.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/AbstractSynchronizeParticipant.java
@@ -274,7 +274,6 @@ public abstract class AbstractSynchronizeParticipant extends PlatformObject impl
* }
* </pre>
* where <code>PARTICIPANT_ID</code> is the id of the participant as defined in the plugin manifest.
- * </p>
* @see org.eclipse.team.ui.synchronize.ISynchronizeParticipant#init(String, org.eclipse.ui.IMemento)
*/
@Override
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipant.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipant.java
index ca284f7e6..577d2f959 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipant.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipant.java
@@ -191,7 +191,7 @@ public interface ISynchronizeParticipant extends IExecutableExtension, IAdaptabl
* resources associated with a participant. When a participant is added
* to the {@link ISynchronizeManager} this method is called when the
* manager is shutdown or the participant is removed from the manager.
- * </p><p>
+ * <p>
* Within this method a participant may release any resources, fonts, images, etc.
* held by this part. It is also very important to remove all listeners.
* </p><p>
@@ -218,12 +218,13 @@ public interface ISynchronizeParticipant extends IExecutableExtension, IAdaptabl
* registered.
* <p>
* The changes supported by the synchronize view are as follows:
+ * </p>
* <ul>
* <li><code>IBasicPropertyConstants.P_TEXT</code>- indicates the name
* of a synchronize participant has changed</li>
* <li><code>IBasicPropertyConstants.P_IMAGE</code>- indicates the
* image of a synchronize participant has changed</li>
- * </ul></p>
+ * </ul>
* <p>
* Clients may define additional properties as required.
* </p>

Back to the top