-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ConcurrentModificationException in ViewDiagramDescriptionConverter #1176
Comments
florianbarbin
added a commit
that referenced
this issue
Apr 26, 2022
ViewDiagramDescriptionConverter is now a service but two attributes convertedNodes and convertedEdges were mutable and used during the conversion. Bug: #1176 Signed-off-by: Florian Barbin <[email protected]>
florianbarbin
added a commit
that referenced
this issue
Apr 26, 2022
ViewDiagramDescriptionConverter is now a service but two attributes convertedNodes and convertedEdges were mutable and used during the conversion. Bug: #1176 Signed-off-by: Florian Barbin <[email protected]>
39 tasks
florianbarbin
added a commit
that referenced
this issue
Apr 27, 2022
ViewDiagramDescriptionConverter is now a service but two attributes convertedNodes and convertedEdges were mutable and used during the conversion. Bug: #1176 Signed-off-by: Florian Barbin <[email protected]>
florianbarbin
added a commit
that referenced
this issue
Apr 28, 2022
ViewDiagramDescriptionConverter is now a service but two attributes convertedNodes and convertedEdges were mutable and used during the conversion. Bug: #1176 Signed-off-by: Florian Barbin <[email protected]>
sbegaudeau
pushed a commit
that referenced
this issue
Apr 29, 2022
…ionConverter ViewDiagramDescriptionConverter is now a service but two attributes convertedNodes and convertedEdges were mutable and used during the conversion. Bug: #1176 Signed-off-by: Florian Barbin <[email protected]>
sbegaudeau
pushed a commit
that referenced
this issue
Apr 29, 2022
…ionConverter ViewDiagramDescriptionConverter is now a service but two attributes convertedNodes and convertedEdges were mutable and used during the conversion. Bug: #1176 Signed-off-by: Florian Barbin <[email protected]>
sbegaudeau
pushed a commit
that referenced
this issue
Apr 29, 2022
…ionConverter ViewDiagramDescriptionConverter is now a service but two attributes convertedNodes and convertedEdges were mutable and used during the conversion. Bug: #1176 Signed-off-by: Florian Barbin <[email protected]>
sbegaudeau
pushed a commit
that referenced
this issue
Apr 29, 2022
…ionConverter ViewDiagramDescriptionConverter is now a service but two attributes convertedNodes and convertedEdges were mutable and used during the conversion. Bug: #1176 Signed-off-by: Florian Barbin <[email protected]>
sbegaudeau
pushed a commit
that referenced
this issue
Apr 29, 2022
…ionConverter ViewDiagramDescriptionConverter is now a service but two attributes convertedNodes and convertedEdges were mutable and used during the conversion. Bug: #1176 Signed-off-by: Florian Barbin <[email protected]>
sbegaudeau
pushed a commit
that referenced
this issue
Apr 29, 2022
…ionConverter ViewDiagramDescriptionConverter is now a service but two attributes convertedNodes and convertedEdges were mutable and used during the conversion. Bug: #1176 Signed-off-by: Florian Barbin <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following exception can easily occur when creating custom studios:
This is probably caused by a85988f which made
ViewDiagramDescriptionConverter
a singleton (@Service
), but the conversion code is not thread-safe or even reentrant as it keeps some mutable state during the conversion inconvertedNodes
andconvertedEdges
.The text was updated successfully, but these errors were encountered: