Solve FR [ 1843854 ] Creating fields on dispose (performance)

This commit is contained in:
Carlos Ruiz 2007-12-04 06:48:18 +00:00
parent bbc9c79fc2
commit 053316b6b4
2 changed files with 9 additions and 2 deletions

View File

@ -240,7 +240,8 @@ public class GridTab implements DataStatusListener, Evaluatee, Serializable
m_Chats.clear();
m_Chats = null;
//
m_vo.getFields().clear();
if (m_vo.isInitFields())
m_vo.getFields().clear();
//m_vo.Fields = null;
m_vo = null;
if (m_loader != null)

View File

@ -546,5 +546,11 @@ public class GridTabVO implements Evaluatee, Serializable
return clone;
} // clone
} // MTabVO
/**
* @return the initFields
*/
public boolean isInitFields() {
return initFields;
}
} // MTabVO