Skip to content

Commit

Permalink
Do not insert null values
Browse files Browse the repository at this point in the history
  • Loading branch information
wi11dey committed Sep 4, 2024
1 parent 2d42b73 commit 689eb95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ public Map<MetadataType, MetadataComponent> deserialize(Descriptor descriptor, F
{
in.seek(offset);
component = type.serializer.deserialize(descriptor.version, in);
components.put(type, component);
}
components.put(type, component);
}
return components;
}
Expand Down

0 comments on commit 689eb95

Please sign in to comment.