aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/lib/ProgressMonitor.java
diff options
context:
space:
mode:
authorAlex Blewitt <alex.blewitt@gmail.com>2009-10-19 09:48:00 +0100
committerShawn O. Pearce <spearce@spearce.org>2009-10-31 14:48:44 -0700
commit4d91645e890527efbe04ffaee12b4aa3637733c4 (patch)
treed3efbcdb2ea2b9e7187057d55b060d1d75b6a024 /org.eclipse.jgit/src/org/eclipse/jgit/lib/ProgressMonitor.java
parentf3d75800a0fb687f65e64b82235140f86be6171e (diff)
downloadjgit-4d91645e890527efbe04ffaee12b4aa3637733c4.tar.gz
jgit-4d91645e890527efbe04ffaee12b4aa3637733c4.zip
Remove trailing whitespace at end of line
As discussed on the egit-dev mailing list, we prefer not to have trailing whitespace in our source code. Correct all currently offending lines by trimming them. Change-Id: I002b1d1980071084c0bc53242c8f5900970e6845 Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/ProgressMonitor.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/ProgressMonitor.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ProgressMonitor.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ProgressMonitor.java
index cab1b08584..7748140e2c 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ProgressMonitor.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ProgressMonitor.java
@@ -53,7 +53,7 @@ public interface ProgressMonitor {
* Advise the monitor of the total number of subtasks.
* <p>
* This should be invoked at most once per progress monitor interface.
- *
+ *
* @param totalTasks
* the total number of tasks the caller will need to complete
* their processing.
@@ -62,7 +62,7 @@ public interface ProgressMonitor {
/**
* Begin processing a single task.
- *
+ *
* @param title
* title to describe the task. Callers should publish these as
* stable string constants that implementations could match
@@ -79,7 +79,7 @@ public interface ProgressMonitor {
* This is an incremental update; if invoked once per work unit the correct
* value for our argument is <code>1</code>, to indicate a single unit of
* work has been finished by the caller.
- *
+ *
* @param completed
* the number of work units completed since the last call.
*/
@@ -90,7 +90,7 @@ public interface ProgressMonitor {
/**
* Check for user task cancellation.
- *
+ *
* @return true if the user asked the process to stop working.
*/
boolean isCancelled();