Skip to content

Commit 5c0cf06

Browse files
authored
Fix typo in readCloudEventExtension method name (#1407)
Signed-off-by: fjtirado <ftirados@redhat.com>
1 parent f34d605 commit 5c0cf06

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

impl/core/src/main/java/io/serverlessworkflow/impl/marshaller/MarshallingUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,13 @@ public static CloudEventBuilder readCloudEventExtensions(
112112
}
113113
try (ByteArrayInputStream bytesInt = new ByteArrayInputStream(value);
114114
WorkflowInputBuffer in = factory.input(bytesInt)) {
115-
return readCloudEventExtenstions(in, value, builder);
115+
return readCloudEventExtensions(in, value, builder);
116116
} catch (IOException e) {
117117
throw new UncheckedIOException(e);
118118
}
119119
}
120120

121-
public static CloudEventBuilder readCloudEventExtenstions(
121+
public static CloudEventBuilder readCloudEventExtensions(
122122
WorkflowInputBuffer in, byte[] value, CloudEventBuilder builder) {
123123
int size = in.readInt();
124124
while (size-- > 0) {

impl/persistence/bigmap/src/main/java/io/serverlessworkflow/impl/persistence/bigmap/BytesMapInstanceTransaction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ protected CloudEvent unmarshallCloudEvent(byte[] eventData) {
232232
builder.withDataSchema((URI) reader.readObject());
233233
builder.withDataContentType((String) reader.readObject());
234234
builder.withData((byte[]) reader.readObject());
235-
MarshallingUtils.readCloudEventExtenstions(reader, eventData, builder);
235+
MarshallingUtils.readCloudEventExtensions(reader, eventData, builder);
236236
return builder.build();
237237
} catch (IOException e) {
238238
throw new UncheckedIOException(e);

0 commit comments

Comments
 (0)