Skip to content

Commit

Permalink
JDK 1.6 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krasa committed Jun 13, 2016
1 parent 223082c commit 7ce3f28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/plantuml/idea/rendering/PlantUmlRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ private static Pair<Integer, List<String>> zoomDiagram(RenderRequest renderReque

@NotNull
private static List<String> getTitles(int totalPages, List<BlockUml> blocks) {
List<String> titles = new ArrayList<>(totalPages);
List<String> titles = new ArrayList<String>(totalPages);
for (BlockUml block : blocks) {
Diagram diagram = block.getDiagram();
if (diagram instanceof SequenceDiagram) {
Expand Down

0 comments on commit 7ce3f28

Please sign in to comment.