Skip to content

Commit

Permalink
plantuml.1.2019.4
Browse files Browse the repository at this point in the history
  • Loading branch information
krasa committed Apr 12, 2019
1 parent f151df3 commit bd3d9f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<idea-plugin version="2">
<name>PlantUML integration</name>
<version>2.14.2</version>
<version>2.14.3</version>
<vendor url="https://github.com/esteinberg/plantuml4idea/">Eugene Steinberg</vendor>
<!-- IJ 12+ -->
<idea-version since-build="182"/>
Expand All @@ -11,6 +11,7 @@
<![CDATA[
<p>2.14</p>
<ul>
<li>PlantUml library upgrade to v1.2019.4</li>
<li>Automatic code completion popup</li>
<li>Fixed reverse arrow intention</li>
<li>Added settings for encoding and PlantUML config (global include)</li>
Expand Down
Binary file not shown.
8 changes: 4 additions & 4 deletions src/org/plantuml/idea/rendering/PlantUmlPartialRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ protected RenderResult renderError(RenderRequest renderRequest, PartialRendering
RenderResult renderResult = new RenderResult(RenderingType.PARTIAL, 1);
ByteArrayOutputStream os = new ByteArrayOutputStream();
try {
LineLocationImpl lineLocation = new LineLocationImpl(null, null);
CharSequence2Impl o = new CharSequence2Impl("", lineLocation);
List<CharSequence2> source1 = Collections.<CharSequence2>singletonList(o);
UmlSource source = new UmlSource(source1, false);
LineLocationImpl lineLocation = new LineLocationImpl("", null);
StringLocated o = new StringLocated("", lineLocation);
List<StringLocated> data = Collections.singletonList(o);
UmlSource source = new UmlSource(data, false);

ErrorUml singleError = new ErrorUml(ErrorUmlType.EXECUTION_ERROR, e.getMessage(), lineLocation);
PSystemError pSystemError = new PSystemError(source, singleError, null);
Expand Down

0 comments on commit bd3d9f8

Please sign in to comment.