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

Merge branch 'stable-6.7' into stable-6.8

* stable-6.7:
  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: I513a1cbb2bfd002d125b04f7944a625ca52decea
parents 9377d319 ede678ab
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.2</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())
......
......@@ -363,7 +363,7 @@
<plugin>
<groupId>org.eclipse.dash</groupId>
<artifactId>license-tool-plugin</artifactId>
<version>1.0.2</version>
<version>1.1.0</version>
</plugin>
<plugin>
<groupId>org.cyclonedx</groupId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment