Merge branch 'stable-0.9'
* stable-0.9:
Correct Javadoc for WS_IGNORE_CHANGE comparator
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 2f31618..1f88aff 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 int hashRegion(final byte[] raw, int ptr, int end) {
}
};
- /** 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) {