Skip to content

Commit

Permalink
Update chronicle map to 2.26ea33
Browse files Browse the repository at this point in the history
  • Loading branch information
MediaMarco committed Aug 19, 2024
1 parent 1a60a9a commit 9d8e3d1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion synapse-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
api "org.springframework.boot:spring-boot"
api "org.springframework.boot:spring-boot-autoconfigure"

implementation(platform("net.openhft:chronicle-bom:2.25ea53"))
implementation(platform("net.openhft:chronicle-bom:2.26ea33"))
implementation "jakarta.annotation:jakarta.annotation-api:3.0.0"

// This dependency is used internally, and not exposed to consumers on their own compile classpath.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public ChronicleMapBytesMarshaller(ObjectMapper objectMapper,
}

@Override
public V read(Bytes in, V using) {
public V read(Bytes<?> in, V using) {
try {
return objectMapper.readValue(in.inputStream(), clazz);
} catch (IOException e) {
Expand All @@ -39,7 +39,7 @@ public V read(Bytes in, V using) {
}

@Override
public void write(Bytes out, V toWrite) {
public void write(Bytes<?> out, V toWrite) {
try {
objectMapper.writeValue(out.writer(), toWrite);
} catch (IOException e) {
Expand Down
2 changes: 1 addition & 1 deletion synapse-testsupport/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jdk8"

implementation(platform("net.openhft:chronicle-bom:2.25ea53"))
implementation(platform("net.openhft:chronicle-bom:2.26ea33"))
implementation("net.openhft:chronicle-map") {
exclude group: "com.intellij", module: "annotations"
}
Expand Down

0 comments on commit 9d8e3d1

Please sign in to comment.