summaryrefslogtreecommitdiff
path: root/src/net/sourceforge/plantuml/swing
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/sourceforge/plantuml/swing')
-rw-r--r--src/net/sourceforge/plantuml/swing/LicenseWindow.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/sourceforge/plantuml/swing/LicenseWindow.java b/src/net/sourceforge/plantuml/swing/LicenseWindow.java
index f00d44c..257a47b 100644
--- a/src/net/sourceforge/plantuml/swing/LicenseWindow.java
+++ b/src/net/sourceforge/plantuml/swing/LicenseWindow.java
@@ -71,7 +71,7 @@ class LicenseWindow extends JFrame {
this.setTitle("Licence PlantUML (" + Version.versionString() + ")");
getContentPane().add(getNorthLabel(), BorderLayout.NORTH);
- final List<String> list = new ArrayList<String>(License.getCurrent().getText());
+ final List<String> list = new ArrayList<String>(License.getCurrent().getText(false));
getContentPane().add(getJComponent(list), BorderLayout.CENTER);
getContentPane().add(getSouthLabel(), BorderLayout.SOUTH);