Deleting any module or java action from modeller

1
When i delete any java action/Module from modeller, java file/module specific folder in the project directory is not getting deleted automatically, Is this the expected behaviour? Whenever we do delete of the file/entire module from modeller do we need the files/folder manually from project directory also? Please could you let me know what needs to be done to avoid conflicts when we take an update next time??
asked
1 answers
1

When you delete a module or Java action, the corresponding file(s) on disk are automatically deleted as well. This has been the case since version 3.0.0 of Mendix, in which Subversion-based version control was introduced.

If you are getting conflicts on disk when updating after someone deleted a module, this is most likely because you changed something in that module's Java actions. It is not possible to merge a change with a deleted file, so this will result in a conflict on disk.

Your best bet to avoid conflicts like these is therefore to have clear communication within your team when someone is about to delete a module, so that everyone knows to stay out of that area until the deletion has been committed and everyone can update.

answered