Bump org.eclipse.jdt:ecj from 3.41.0 to 3.43.0 (#19295)

* Bump org.eclipse.jdt:ecj from 3.41.0 to 3.43.0

Bumps [org.eclipse.jdt:ecj](https://github.com/eclipse-jdt/eclipse.jdt.core) from 3.41.0 to 3.43.0.
- [Commits](https://github.com/eclipse-jdt/eclipse.jdt.core/commits)

---
updated-dependencies:
- dependency-name: org.eclipse.jdt:ecj
  dependency-version: 3.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

* Fix null annotation

Also-by: Holger Friedrich <mail@holger-friedrich.de>
Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2025-09-08 07:24:09 +02:00
committed by GitHub
parent 7c80002e7d
commit 4d15e99032
2 changed files with 3 additions and 2 deletions
@@ -15,6 +15,7 @@ package org.openhab.binding.energidataservice.internal.api.dto;
import java.math.BigDecimal;
import java.time.Instant;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.jdt.annotation.Nullable;
@@ -26,7 +27,7 @@ import com.google.gson.annotations.SerializedName;
* @author Jacob Laursen - Initial contribution
*/
@NonNullByDefault
public record DayAheadPriceRecord(@SerializedName("TimeUTC") Instant time,
public record DayAheadPriceRecord(@SerializedName("TimeUTC") @NonNull Instant time,
@Nullable @SerializedName("DayAheadPriceDKK") BigDecimal dayAheadPriceDKK,
@Nullable @SerializedName("DayAheadPriceEUR") BigDecimal dayAheadPriceEUR) implements SpotPriceRecord {
+1 -1
View File
@@ -325,7 +325,7 @@ Import-Package: \\
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>ecj</artifactId>
<version>3.41.0</version>
<version>3.43.0</version>
</dependency>
</dependencies>
</plugin>