-
Type: Improvement
-
Status: Open
-
Priority: Minor
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: QualifiedToSchedule
-
Component/s: Core
-
Tags:
Currently developers have to write:
doc = session.createDocument(doc);
or
doc = session.saveDocument(doc);
because the input DocumentModel is not modified in place, and another DocumentModel is instantiated and returned. This is a pain and very error-prone.
We want to be able to write just:
session.createDocument(doc);
or
session.saveDocument(doc);
so that the input DocumentModel parameter is the one modified and returned to the caller.
- is related to
-
NXP-25841 Ignore files not present in binary store
- Resolved