Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change the innitialize size of resolvedProperties to 0 in order to save memory pre-allocated #880

Merged
merged 3 commits into from
Jan 10, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ and what APIs have changed, if applicable.

## [Unreleased]

## [29.41.4] - 2023-01-09
change the innitialize size of resolvedProperties to 0 in order to save memory pre-allocated

## [29.41.3] - 2023-01-03
Add option to force publish idl and snapshot

Expand Down Expand Up @@ -5429,7 +5432,8 @@ patch operations can re-use these classes for generating patch messages.

## [0.14.1]

[Unreleased]: https://github.com/linkedin/rest.li/compare/v29.41.3...master
[Unreleased]: https://github.com/linkedin/rest.li/compare/v29.41.4...master
[29.41.4]: https://github.com/linkedin/rest.li/compare/v29.41.3...v29.41.4
[29.41.3]: https://github.com/linkedin/rest.li/compare/v29.41.2...v29.41.3
[29.41.2]: https://github.com/linkedin/rest.li/compare/v29.41.1...v29.41.2
[29.41.1]: https://github.com/linkedin/rest.li/compare/v29.41.0...v29.41.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,5 +184,5 @@ public DataSchema clone() throws CloneNotSupportedException
}

private final Type _type;
Map<String, Object> _resolvedProperties = new HashMap<>();
Map<String, Object> _resolvedProperties = new HashMap<>(0);
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=29.41.3
version=29.41.4
group=com.linkedin.pegasus
org.gradle.configureondemand=true
org.gradle.parallel=true
Expand Down