Skip to content

Commit 2b3f37b

Browse files
committed
U generated toString()
1 parent a85d813 commit 2b3f37b

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

src/main/java/io/github/fvarrui/javapackager/packagers/PackagerSettings.java

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public File getJrePath() {
118118
public File getJdkPath() {
119119
return jdkPath;
120120
}
121-
121+
122122
public List<File> getAdditionalResources() {
123123
return additionalResources;
124124
}
@@ -273,7 +273,7 @@ public PackagerSettings jrePath(File jrePath) {
273273
this.jrePath = jrePath;
274274
return this;
275275
}
276-
276+
277277
public PackagerSettings jdkPath(File jdkPath) {
278278
this.jdkPath = jdkPath;
279279
return this;
@@ -366,19 +366,18 @@ public PackagerSettings assetsDir(File assetsDir) {
366366

367367
@Override
368368
public String toString() {
369-
return "PackagerSettings [outputDirectory=" + outputDirectory + ", licenseFile=" + licenseFile
370-
+ ", iconFile=" + iconFile + ", generateInstaller=" + generateInstaller + ", mainClass=" + mainClass
371-
+ ", name=" + name + ", displayName=" + displayName + ", version=" + version + ", description="
372-
+ description + ", url=" + url + ", administratorRequired=" + administratorRequired
373-
+ ", organizationName=" + organizationName + ", organizationUrl=" + organizationUrl
374-
+ ", organizationEmail=" + organizationEmail + ", bundleJre=" + bundleJre + ", customizedJre="
375-
+ customizedJre + ", jrePath=" + jrePath + ", additionalResources=" + additionalResources + ", modules="
376-
+ modules + ", additionalModules=" + additionalModules + ", platform=" + platform + ", envPath="
377-
+ envPath + ", vmArgs=" + vmArgs + ", runnableJar=" + runnableJar + ", copyDependencies="
378-
+ copyDependencies + ", jreDirectoryName=" + jreDirectoryName + ", winConfig=" + winConfig
379-
+ ", linuxConfig=" + linuxConfig + ", macConfig=" + macConfig + ", createTarball=" + createTarball
380-
+ ", createZipball=" + createZipball + ", extra=" + extra + ", useResourcesAsWorkingDir="
381-
+ useResourcesAsWorkingDir + ", assetsDir=" + assetsDir + "]";
369+
return "PackagerSettings [outputDirectory=" + outputDirectory + ", licenseFile=" + licenseFile + ", iconFile="
370+
+ iconFile + ", generateInstaller=" + generateInstaller + ", mainClass=" + mainClass + ", name=" + name
371+
+ ", displayName=" + displayName + ", version=" + version + ", description=" + description + ", url="
372+
+ url + ", administratorRequired=" + administratorRequired + ", organizationName=" + organizationName
373+
+ ", organizationUrl=" + organizationUrl + ", organizationEmail=" + organizationEmail + ", bundleJre="
374+
+ bundleJre + ", customizedJre=" + customizedJre + ", jrePath=" + jrePath + ", jdkPath=" + jdkPath
375+
+ ", additionalResources=" + additionalResources + ", modules=" + modules + ", additionalModules="
376+
+ additionalModules + ", platform=" + platform + ", envPath=" + envPath + ", vmArgs=" + vmArgs
377+
+ ", runnableJar=" + runnableJar + ", copyDependencies=" + copyDependencies + ", jreDirectoryName="
378+
+ jreDirectoryName + ", winConfig=" + winConfig + ", linuxConfig=" + linuxConfig + ", macConfig="
379+
+ macConfig + ", createTarball=" + createTarball + ", createZipball=" + createZipball + ", extra="
380+
+ extra + ", useResourcesAsWorkingDir=" + useResourcesAsWorkingDir + ", assetsDir=" + assetsDir + "]";
382381
}
383382

384383
}

0 commit comments

Comments
 (0)