Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/treewalk/WorkingTreeIterator.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/treewalk/WorkingTreeIterator.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/WorkingTreeIterator.java b/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/WorkingTreeIterator.java
index 18ceef8d91..0c6786bcd3 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/WorkingTreeIterator.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/WorkingTreeIterator.java
@@ -65,7 +65,7 @@ import org.eclipse.jgit.lib.FileMode;
* <code>java.io</code> package. Plugins for a Java based IDE may however wish
* to create their own implementations of this class to allow traversal of the
* IDE's project space, as well as benefit from any caching the IDE may have.
- *
+ *
* @see FileTreeIterator
*/
public abstract class WorkingTreeIterator extends AbstractTreeIterator {
@@ -127,7 +127,7 @@ public abstract class WorkingTreeIterator extends AbstractTreeIterator {
/**
* Create an iterator for a subtree of an existing iterator.
- *
+ *
* @param p
* parent tree iterator.
*/
@@ -354,7 +354,7 @@ public abstract class WorkingTreeIterator extends AbstractTreeIterator {
/**
* Obtain the current entry from this iterator.
- *
+ *
* @return the currently selected entry.
*/
protected Entry current() {
@@ -395,7 +395,7 @@ public abstract class WorkingTreeIterator extends AbstractTreeIterator {
* The implementation of this method must be efficient. If a subclass
* needs to compute the value they should cache the reference within an
* instance member instead.
- *
+ *
* @return a file mode constant from {@link FileMode}.
*/
public abstract FileMode getMode();
@@ -408,7 +408,7 @@ public abstract class WorkingTreeIterator extends AbstractTreeIterator {
* The implementation of this method must be efficient. If a subclass
* needs to compute the value they should cache the reference within an
* instance member instead.
- *
+ *
* @return size of this file, in bytes.
*/
public abstract long getLength();
@@ -431,7 +431,7 @@ public abstract class WorkingTreeIterator extends AbstractTreeIterator {
* <p>
* Efficient implementations are not required. The caller will obtain
* the name only once and cache it once obtained.
- *
+ *
* @return name of the entry.
*/
public abstract String getName();
@@ -447,7 +447,7 @@ public abstract class WorkingTreeIterator extends AbstractTreeIterator {
* block IO operations.
* <p>
* The caller will close the stream once complete.
- *
+ *
* @return a stream to read from the file.
* @throws IOException
* the file could not be opened for reading.

Back to the top