-
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
IllegalArgumentException on startup due to use of multi-language method #93
Milestone
Comments
I think I assumed the second argument was the default value of the attribute, not the locale. But still it seemed to worked without problems when I tried it myself... I'll add this issue to the next milestone. |
Bananeweizen
added a commit
to Bananeweizen/plantuml
that referenced
this issue
Sep 19, 2019
Use the non-locale variant of the method to avoid the exception.
steghoja
pushed a commit
to steghoja/plantuml
that referenced
this issue
Mar 27, 2020
As an extension to issue hallvard#93, this commit introduces changes to allow updating the diagram based on the view that PlantUML last used (i.e., the currentPart) instead of the view that is currently in focus. To make this work, PlantUML now ignores its own view (i.e., does not set the view in which it renders the diagram as the current part) and has a new method updateDiagramTextFromCurrentPart() which updates the diagram based on the currently set currentPart.
steghoja
pushed a commit
to steghoja/plantuml
that referenced
this issue
Jun 26, 2020
As an extension to issue hallvard#93, this commit introduces changes to allow updating the diagram based on the view that PlantUML last used (i.e., the currentPart) instead of the view that is currently in focus. To make this work, PlantUML now ignores its own view (i.e., does not set the view in which it renders the diagram as the current part) and has a new method updateDiagramTextFromCurrentPart() which updates the diagram based on the currently set currentPart.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When starting Eclipse with PlantUML 1.1.23, I receive the following error and stacktrace:
The offending statement in
Activator.java
iswhere
ces
is of typeIConfigurationElement
. According to the JavaDoc, this could be replaced withces.getAttribute("id")
to use a non-localised version, in particular since the locale isnull
anyway.The text was updated successfully, but these errors were encountered: