[*] Remove lombok.var for better compatibility

This commit is contained in:
2025-07-28 21:37:15 +02:00
parent 7c253a73b3
commit 20e08349e7
8 changed files with 27 additions and 31 deletions

View File

@@ -9,7 +9,7 @@ import de.siphalor.tweed5.dataapi.api.*;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;
import lombok.RequiredArgsConstructor;
import lombok.var;
import lombok.val;
import org.jetbrains.annotations.Contract;
import org.jspecify.annotations.Nullable;
@@ -181,7 +181,7 @@ public class TweedEntryReaderWriterImpls {
NOOP_READER_WRITER.read(reader, null, context);
continue;
}
var subEntryReaderChain = context.readWriteExtension().getReaderChain(subEntry);
val subEntryReaderChain = context.readWriteExtension().getReaderChain(subEntry);
Object subEntryValue = subEntryReaderChain.read(reader, subEntry, context);
entry.set(compoundValue, key, subEntryValue);
} else {