diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2010-08-31 20:24:37 -0700 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2010-09-01 10:19:42 -0700 |
commit | 9df493a318f214f9779b9784271145a611102dc2 (patch) | |
tree | eaca293a453c13575da9579a0a1b59214130fa58 /org.eclipse.jgit/src/org/eclipse/jgit | |
parent | efde2e3ea7aa8acde36740223f95fd0e46b0796a (diff) | |
download | jgit-9df493a318f214f9779b9784271145a611102dc2.tar.gz jgit-9df493a318f214f9779b9784271145a611102dc2.zip |
Correct Javadoc of DiffFormatter class
This class does a lot more than just reflow a patch script, it now is
the primary means of creating a diff output.
Change-Id: I74467c9a53dc270ef8c84e7c75f388414ec8ba8f
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java b/org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java index 6f761d0366..40a5b3764f 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java @@ -73,7 +73,7 @@ import org.eclipse.jgit.util.QuotedString; import org.eclipse.jgit.util.io.DisabledOutputStream; /** - * Format an {@link EditList} as a Git style unified patch script. + * Format a Git style patch script. */ public class DiffFormatter { private static final byte[] noNewLine = encodeASCII("\\ No newline at end of file\n"); |