Skip to content

Commit

Permalink
Merge pull request #55 from HHS/bugfix/null-parent-class-map
Browse files Browse the repository at this point in the history
remove nulling of map after adding translation engine
  • Loading branch information
bischoffz authored May 6, 2024
2 parents 2479d3b + 8a0ab31 commit a246f6e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,6 @@ private void validateTranslatorsInitialized() {
Map<Class<?>, Class<?>> getChildParentClassMap() {
Map<Class<?>, Class<?>> copyMap = new LinkedHashMap<>(this.data.childToParentClassMap);

this.data.childToParentClassMap = null;

return copyMap;
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<!-- Properties -->
<properties>
<!-- Version -->
<revision>4.0.1</revision>
<revision>4.0.2</revision>

<!-- basic project properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit a246f6e

Please sign in to comment.