Skip to content
This repository has been archived by the owner on May 26, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4 from timedin-de/dev
Browse files Browse the repository at this point in the history
Minor fixes and corrected typos
  • Loading branch information
timedin-de authored Nov 26, 2022
2 parents 530d43e + b861ed2 commit 90082d4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/de/timedin/jUtils/main/JUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ public class JUtils {

//Method to display message when JAR is run directly
public static void main(String[] args) {
JOptionPane.showMessageDialog(null, "This is a Java library, not an executable!\n\n" +
String url = "https://github.com/timedin-de/JUtils/releases/new";
JOptionPane.showMessageDialog(null, "This is a Java library, not an executable!" +
"\n" +
"More information at: "+url +
"\n\n\n"+
"Das ist eine Java-Bibliothek, keine ausführbare Datei!" +
"\n\n\n" +
"More information at: https://www.timedin.de/tools/java_utils" +
"\n" +
"Mehr Informationen unter: https://www.timedin.de/tools/java_utils" +
"Mehr Informationen unter: "+url +
"", "Fehler", JOptionPane.ERROR_MESSAGE);
}

Expand Down

0 comments on commit 90082d4

Please sign in to comment.