Skip to content

Commit 5247598

Browse files
eclipse-pde-botakurtakov
authored andcommitted
Perform clean code of ui/org.eclipse.pde.launching
1 parent f702744 commit 5247598

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ui/org.eclipse.pde.launching/src/org/eclipse/pde/launching/ExtraBundleModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
class ExtraBundleModel extends AbstractPluginModelBase {
3535

3636
private static final long serialVersionUID = 1L;
37-
private Path path;
37+
private final Path path;
3838

3939
public ExtraBundleModel(Path path, Map<String, String> manifest) throws BundleException {
4040
this.path = path;

ui/org.eclipse.pde.launching/src/org/eclipse/pde/launching/JUnitLaunchConfigurationDelegate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ protected void collectExecutionArguments(ILaunchConfiguration configuration, Lis
246246
Path tmpPath = Path.of(fWorkspaceLocation, testPlugin.getId() + "-fragment.jar"); //$NON-NLS-1$
247247
Files.createDirectories(tmpPath.getParent());
248248
try (JarOutputStream stream = new JarOutputStream(Files.newOutputStream(tmpPath), calcManifest)) {
249-
//TODO Equinox since a while contains the 'data:' URL handler can we use that instead of a real file on disk?
249+
//TODO Equinox since a while contains the 'data:' URL handler can we use that instead of a real file on disk?
250250
}
251251
tmpPath.toFile().deleteOnExit();
252252
Map<String, String> manifest = ManifestElement.parseBundleManifest(new ByteArrayInputStream(out.toByteArray()), null);

0 commit comments

Comments
 (0)