Skip to content

Commit

Permalink
Fixed license type
Browse files Browse the repository at this point in the history
  • Loading branch information
rmraya committed Aug 23, 2019
1 parent 0bd840c commit 0318e17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified lib/conversa.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions src/com/maxprograms/conversa/views/Licenses.java
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public void handleEvent(Event arg0) {
snowball.setText("Snowball");

CustomLink snowballLink = new CustomLink(shell, SWT.NONE);
snowballLink.setText("BSD (3-clause) License");
snowballLink.setText("BSD License");
try {
snowballLink.setURL(new File("LEGAL/snowball.LICENSE").toURI().toURL().toString());
} catch (MalformedURLException e) {
Expand All @@ -214,7 +214,7 @@ public void handleEvent(Event arg0) {
flexmark.setText("flexmark-java");

CustomLink flexMarkLink = new CustomLink(shell, SWT.NONE);
flexMarkLink.setText("BSD (2-clause) License");
flexMarkLink.setText("BSD License");
try {
flexMarkLink.setURL(new File("LEGAL/flexmark.LICENSE").toURI().toURL().toString());
} catch (MalformedURLException e) {
Expand Down

0 comments on commit 0318e17

Please sign in to comment.