Karbert
9 years agoOccasional Contributor
lastOpened property causes svn conflict
Hi,
We store the composite projects in SVN. After closing and reopening a project, a new property is added to the project's setting.xml file: lastOpened. Unfortunately this causes SVN conflict in case more users open the same project, even if nobody changed anything.
Is there a possibility to disable the creation of this property?
Best regards,
Norbert Kando
I've managed to "fix" this by removing the lastOpened attribute in a projectListener's beforeSave method:
@Override
public void beforeSave(Project project) {
ProjectConfig pc = ((AbstractWsdlModelItem<ProjectConfig>) project).getConfig();
pc.unsetLastOpened();
}