Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Pazderski2019-12-12 21:18:36 +0000
committerPaul Pazderski2019-12-13 22:46:45 +0000
commitedadfc9b044959e3d95cb9157df43e6156a35596 (patch)
tree9350584f04b5448f8f636178ea925c533ecdbfb0 /bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java
parent6a5418e83f436db21972ab634e8084ca18fd1f27 (diff)
downloadeclipse.platform.team-edadfc9b044959e3d95cb9157df43e6156a35596.tar.gz
eclipse.platform.team-edadfc9b044959e3d95cb9157df43e6156a35596.tar.xz
eclipse.platform.team-edadfc9b044959e3d95cb9157df43e6156a35596.zip
Fix syntax warnings aka missing description on @param, etc. Only Javadoc changes. Should fix all remaining errors and warnings from platform Javadoc build with -Xdoclint:reference,html,syntax. Almost exclusively missing @throws descriptions. Change-Id: Ia17fbb732f77786cc62f817198805e82d4e614d5 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de>
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java
index 1a7392e8f..f9f55302c 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizeModelAction.java
@@ -106,8 +106,8 @@ public abstract class SynchronizeModelAction extends BaseSelectionListenerAction
* by calling <code>getSubscriberOperation</code> and then run. Subclasses may
* override.
*
- * @throws InvocationTargetException
- * @throws InterruptedException
+ * @throws InvocationTargetException if an error occurs
+ * @throws InterruptedException if operation is interrupted
* @since 3.1
*/
protected void runOperation() throws InvocationTargetException, InterruptedException {

Back to the top