Commit 7009cbd8acaba462105fb05f59881a0b4b5d55c9
1 parent
bc1e228d
Was added asigning value to of 'searchText' field into constructors
Showing
2 changed files
with
2 additions
and
1 deletions
... | ... | @@ -116,6 +116,7 @@ public class EntityViewEntity implements SearchTextEntity<EntityView> { |
116 | 116 | } |
117 | 117 | this.tsBegin = String.valueOf(entityView.getTsBegin()); |
118 | 118 | this.tsEnd = String.valueOf(entityView.getTsEnd()); |
119 | + this.searchText = entityView.getSearchText(); | |
119 | 120 | this.additionalInfo = entityView.getAdditionalInfo(); |
120 | 121 | } |
121 | 122 | ... | ... |
... | ... | @@ -39,7 +39,6 @@ import javax.persistence.Entity; |
39 | 39 | import javax.persistence.Table; |
40 | 40 | import java.io.IOException; |
41 | 41 | import java.util.List; |
42 | -import java.util.UUID; | |
43 | 42 | import java.util.stream.Collectors; |
44 | 43 | |
45 | 44 | /** |
... | ... | @@ -110,6 +109,7 @@ public class EntityViewEntity extends BaseSqlEntity<EntityView> implements Searc |
110 | 109 | } |
111 | 110 | this.tsBegin = String.valueOf(entityView.getTsBegin()); |
112 | 111 | this.tsEnd = String.valueOf(entityView.getTsEnd()); |
112 | + this.searchText = entityView.getSearchText(); | |
113 | 113 | this.additionalInfo = entityView.getAdditionalInfo(); |
114 | 114 | } |
115 | 115 | ... | ... |