This commit is contained in:
Phillip Webb
2017-09-27 17:44:30 -07:00
parent 7e2d7dcd1d
commit 9e43b99966
42 changed files with 190 additions and 200 deletions

View File

@@ -124,9 +124,7 @@ public class DefaultLaunchScript implements LaunchScript {
if (propertyValue instanceof File) {
return loadContent((File) propertyValue);
}
else {
return loadContent(new File(propertyValue.toString()));
}
return loadContent(new File(propertyValue.toString()));
}
@Override