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/PageSaveablePart.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/PageSaveablePart.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/PageSaveablePart.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/PageSaveablePart.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/PageSaveablePart.java
index 2221dad7e..bd5d1d270 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/PageSaveablePart.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/PageSaveablePart.java
@@ -285,7 +285,7 @@ public abstract class PageSaveablePart extends SaveablePartAdapter implements IC
* @param input the input
* @param configuration the compare configuration
* @param monitor a progress monitor
- * @throws InvocationTargetException
+ * @throws InvocationTargetException if an error occurs
*/
protected abstract void prepareInput(ICompareInput input, CompareConfiguration configuration, IProgressMonitor monitor) throws InvocationTargetException;

Back to the top