diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2024-08-14 09:25:43 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2024-08-14 09:25:43 +0200 |
commit | cd81b68107f62562a9a66944381042d6082134cc (patch) | |
tree | e9bc1c5e41cb8077f612ee10a1b87a3aa17dc307 /org.eclipse.jgit | |
parent | 393571f2af140764183b859c201b1c7bb5146b3a (diff) | |
parent | 441cb90bb3d3bf95ed0807bc77d804f895a9465b (diff) | |
download | jgit-cd81b68107f62562a9a66944381042d6082134cc.tar.gz jgit-cd81b68107f62562a9a66944381042d6082134cc.zip |
Merge branch 'stable-6.1' into stable-6.2stable-6.2
* stable-6.1:
Fix "Comparison of narrow type with wide type in loop condition"
JGit v5.13.3.202401111512-r
Change-Id: Ib536297ef20a75b36cff8f41d57855913f7d7f26
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java index e43ea0261e..f33095fa69 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java @@ -530,7 +530,7 @@ public abstract class PackParser { receiving.beginTask(JGitText.get().receivingObjects, (int) expectedObjectCount); try { - for (int done = 0; done < expectedObjectCount; done++) { + for (long done = 0; done < expectedObjectCount; done++) { indexOneObject(); receiving.update(1); if (receiving.isCancelled()) |