Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@ public static CloudEventBuilder readCloudEventExtensions(
}
try (ByteArrayInputStream bytesInt = new ByteArrayInputStream(value);
WorkflowInputBuffer in = factory.input(bytesInt)) {
return readCloudEventExtenstions(in, value, builder);
return readCloudEventExtensions(in, value, builder);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}

Comment thread
fjtirado marked this conversation as resolved.
public static CloudEventBuilder readCloudEventExtenstions(
public static CloudEventBuilder readCloudEventExtensions(
WorkflowInputBuffer in, byte[] value, CloudEventBuilder builder) {
int size = in.readInt();
while (size-- > 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ protected CloudEvent unmarshallCloudEvent(byte[] eventData) {
builder.withDataSchema((URI) reader.readObject());
builder.withDataContentType((String) reader.readObject());
builder.withData((byte[]) reader.readObject());
MarshallingUtils.readCloudEventExtenstions(reader, eventData, builder);
MarshallingUtils.readCloudEventExtensions(reader, eventData, builder);
return builder.build();
} catch (IOException e) {
throw new UncheckedIOException(e);
Expand Down
Loading