IDEMPIERE-4889 Performance - Attachment management (#801)

This commit is contained in:
Carlos Ruiz 2021-07-28 11:34:09 +02:00 committed by GitHub
parent fffbbb0353
commit ac0c663309
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -82,6 +82,7 @@ public class MAttachmentEntry
public MAttachmentEntry(MAttachmentEntry copy)
{
this.m_isDataSet = copy.m_isDataSet;
this.m_ds = copy.m_ds;
this.m_data = copy.m_data != null ? Arrays.copyOf(copy.m_data, copy.m_data.length) : null;
this.m_index = copy.m_index;
this.m_name = copy.m_name;