Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
class ExtraBundleModel extends AbstractPluginModelBase {

private static final long serialVersionUID = 1L;
private Path path;
private final Path path;

public ExtraBundleModel(Path path, Map<String, String> manifest) throws BundleException {
this.path = path;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ protected void collectExecutionArguments(ILaunchConfiguration configuration, Lis
Path tmpPath = Path.of(fWorkspaceLocation, testPlugin.getId() + "-fragment.jar"); //$NON-NLS-1$
Files.createDirectories(tmpPath.getParent());
try (JarOutputStream stream = new JarOutputStream(Files.newOutputStream(tmpPath), calcManifest)) {
//TODO Equinox since a while contains the 'data:' URL handler can we use that instead of a real file on disk?
//TODO Equinox since a while contains the 'data:' URL handler can we use that instead of a real file on disk?
}
tmpPath.toFile().deleteOnExit();
Map<String, String> manifest = ManifestElement.parseBundleManifest(new ByteArrayInputStream(out.toByteArray()), null);
Expand Down
Loading