Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Lipsky committed Oct 25, 2017
1 parent 8909e0d commit d3f80e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.excelsiorjet</groupId>
<artifactId>excelsior-jet-api</artifactId>
<version>1.1.1-SNAPSHOT</version>
<version>1.1.2-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Excelsior JET API</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public class FileAssociation {
* parameter, otherwise the icon will be added to the specified {@link PackageFile#packagePath} folder of the package.
* If the icon is not set, the default icon of the target executable will be used.
*/
public PackageFile icon;
public PackageFile icon = new PackageFile(PackageFileType.FILE);

/**
* Command-line arguments for the target.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class Shortcut {
* that has an icon, that icon will be used, otherwise the system default icon for
* the target file type will be used.)
*/
public PackageFile icon;
public PackageFile icon = new PackageFile(PackageFileType.FILE);

/**
* Pathname of the working directory of the shortcut target within the package.
Expand Down

0 comments on commit d3f80e0

Please sign in to comment.