Community
Participate
Working Groups
Build Identifier: The diagrams don't take into account association class names when picking a default name for an association. Reproducible: Always Steps to Reproduce: 1. In an empty TS project, create to Entities 2. Create an Association Class between the Entities 3. Name the Association Class 'Association0' 4. Create a regular Association between the entities. Notice that it picks the name 'Association0' for the newly created association! This results in unpredictable behaviour.
Created attachment 179697 [details] Error log
I assume this is probably true for any artifact. I have confirmed that if I rename an Entity Datatype0 then create a datatype I have a similar issue. The only safe fix I can think of is for the 'default name method' to check if the FQN exists (not an issue if it exists in another package) and if it does, to increment and keep trying until it finds one not in use.
Created attachment 183458 [details] Patch with bug fix
I've applied Anton's patch.
Verified. Thanks!