From f3b511568b5f6af219bd9c948092bbec46098484 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Fri, 12 Nov 2010 11:50:38 -0800 Subject: [PATCH] SimilarityIndex: Correct comment explaining the logic This comment was wrong, due to a copy-and-paste error. Here the code is looking at records of dst that do not exist in src, and are skipping past them to find another match. Change-Id: I07c1fba7dee093a1eeffcf7e0c7ec85446777ffb Signed-off-by: Shawn O. Pearce --- .../src/org/eclipse/jgit/diff/SimilarityIndex.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/diff/SimilarityIndex.java b/org.eclipse.jgit/src/org/eclipse/jgit/diff/SimilarityIndex.java index 6627268e48..8531325895 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/diff/SimilarityIndex.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/diff/SimilarityIndex.java @@ -230,8 +230,8 @@ class SimilarityIndex { break; srcKey = keyOf(srcHash[srcIdx]); - } else /* if (srcKey > dstKey) */{ - // Regions of dst which do not appear in dst. + } else /* if (dstKey < srcKey) */{ + // Regions of dst which do not appear in src. if (++dstIdx == dstHash.length) break; dstKey = keyOf(dstHash[dstIdx]); -- 2.39.5