mirror of
https://github.com/danieldemus/openhab-addons
synced 2026-07-29 12:34:21 +02:00
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:
+2
-1
@@ -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 {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user