[#1634] Improve the performance of Factory.newRecord() by avoiding
accessing record values by Field rather than by index - fixed regression
This commit is contained in:
parent
0c4e9f00e4
commit
21b3defc6c
@ -97,7 +97,7 @@ abstract class AbstractRecord extends AbstractStore<Object> implements Record {
|
||||
|
||||
int size = getFields().size();
|
||||
for (int i = 0; i < size; i++) {
|
||||
Object value = getValue0(i);
|
||||
Object value = getValue0(i).getValue();
|
||||
|
||||
if (value instanceof Attachable) {
|
||||
result.add((Attachable) value);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user