Skip to content

Commit

Permalink
[#27] Implemented quickinfo for links (now really)
Browse files Browse the repository at this point in the history
  • Loading branch information
vatbub committed Nov 5, 2016
1 parent de0156a commit c04c021
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/java/applist/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
import java.net.MalformedURLException;
import java.net.URL;
import java.net.UnknownHostException;
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
Expand Down Expand Up @@ -1845,7 +1842,7 @@ public void createShortCut(File shortcutFile, String quickInfoText) throws IOExc
+ this.getMavenArtifactID() + " autolaunchclassifier=" + this.getMavenClassifier());
}

sl.setName("Launch " + this.getName());
sl.setName(quickInfoText.replace("%s", this.getName()));

if (common.Common.getPackaging().equals("exe")) {
sl.setIconLocation(new File(Common.getPathAndNameOfCurrentJar()).toPath().toString());
Expand Down

0 comments on commit c04c021

Please sign in to comment.