Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2012-11-07 10:23:46 +0000
committerDani Megert2012-11-07 10:23:46 +0000
commit325126585d2b6de9bdaa09ac3885092b32c99628 (patch)
tree4709358ea90cabd31d2545a595c4a6ad652fca0d /bundles/org.eclipse.team.core
parent2a9b19536cfd0896a6952722cd31d5f37768a464 (diff)
downloadeclipse.platform.team-325126585d2b6de9bdaa09ac3885092b32c99628.tar.gz
eclipse.platform.team-325126585d2b6de9bdaa09ac3885092b32c99628.tar.xz
eclipse.platform.team-325126585d2b6de9bdaa09ac3885092b32c99628.zip
Fixed Javadoc warning
Diffstat (limited to 'bundles/org.eclipse.team.core')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/Policy.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/Policy.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/Policy.java
index aabb4b4d6..1fb92c8f0 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/Policy.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/Policy.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2005 IBM Corporation and others.
+ * Copyright (c) 2000, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -31,7 +31,9 @@ public class Policy {
}
/**
- * Progress monitor helpers
+ * Progress monitor helpers.
+ *
+ * @param monitor the progress monitor
*/
public static void checkCanceled(IProgressMonitor monitor) {
if (monitor != null && monitor.isCanceled())

Back to the top