diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2010-09-10 22:13:30 -0700 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2010-09-10 22:15:27 -0700 |
commit | db1a9c6a8cc1f157cd08369160e52ec8f81bf4e3 (patch) | |
tree | 496bd81a28600286d3b5fdbacff5ae61bb7831ec | |
parent | 0e8ef778407ced21048cf7e43b4383b23f3ccdc5 (diff) | |
download | jgit-db1a9c6a8cc1f157cd08369160e52ec8f81bf4e3.tar.gz jgit-db1a9c6a8cc1f157cd08369160e52ec8f81bf4e3.zip |
Correct Javadoc for WS_IGNORE_CHANGE comparator
Change-Id: I8aa1e7c7ae192ed28b2c8aaa3c5884b7b4666e9c
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/diff/RawTextComparator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/diff/RawTextComparator.java b/org.eclipse.jgit/src/org/eclipse/jgit/diff/RawTextComparator.java index 2f31618c3e..1f88aff7e3 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/diff/RawTextComparator.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/diff/RawTextComparator.java @@ -216,7 +216,7 @@ public abstract class RawTextComparator extends SequenceComparator<RawText> { } }; - /** Ignores trailing whitespace. */ + /** Ignores whitespace occurring between non-whitespace characters. */ public static final RawTextComparator WS_IGNORE_CHANGE = new RawTextComparator() { @Override public boolean equals(RawText a, int ai, RawText b, int bi) { |