Skip to content
Snippets Groups Projects
Commit e431a0d8 authored by Matthias Sohn's avatar Matthias Sohn
Browse files

Merge branch 'stable-6.9' into stable-6.10

* stable-6.9:
  Update tycho to 4.0.8
  Update org.eclipse.dash:license-tool-plugin to 1.1.0
  Fix "Comparison of narrow type with wide type in loop condition"
  JGit v5.13.3.202401111512-r

Change-Id: I68e73b6e0c6cda003bc18b3e82266c1d8a1f183e
parents cfdfb01f 91426e8c
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@
<properties>
<java.version>11</java.version>
<tycho-version>4.0.7</tycho-version>
<tycho-version>4.0.8</tycho-version>
<target-platform>jgit-4.17</target-platform>
<project.build.outputTimestamp>${git.commit.time}</project.build.outputTimestamp>
</properties>
......
......@@ -530,7 +530,7 @@ public PackLock parse(ProgressMonitor receiving, ProgressMonitor resolving)
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())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment