diff options
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/merge/EolAwareOutputStream.java')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/merge/EolAwareOutputStream.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/merge/EolAwareOutputStream.java b/org.eclipse.jgit/src/org/eclipse/jgit/merge/EolAwareOutputStream.java index 1ddac18e56..8857ef8571 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/merge/EolAwareOutputStream.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/merge/EolAwareOutputStream.java @@ -74,7 +74,11 @@ class EolAwareOutputStream extends OutputStream { write('\n'); } - /** @return true if a new line has just begun. */ + /** + * Whether a new line has just begun + * + * @return true if a new line has just begun. + */ boolean isBeginln() { return bol; } |