Skip to content

Commit f2cc40b

Browse files
eclipse-pde-botvogella
authored andcommitted
Perform clean code of ui/org.eclipse.pde.junit.runtime
1 parent e0822fe commit f2cc40b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ui/org.eclipse.pde.junit.runtime/src/org/eclipse/pde/internal/junit/runtime/Caller.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
* Contributors:
1111
* Christoph Läubrich - initial API and implementation
12-
*
12+
*
1313
*/
1414
package org.eclipse.pde.internal.junit.runtime;
1515

ui/org.eclipse.pde.junit.runtime/src/org/eclipse/pde/internal/junit/runtime/SPIBundleClassLoader.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
* Contributors:
1111
* Christoph Läubrich - initial API and implementation
12-
*
12+
*
1313
*/
1414
package org.eclipse.pde.internal.junit.runtime;
1515

@@ -34,8 +34,8 @@
3434
class SPIBundleClassLoader extends ClassLoader {
3535

3636
private static final String META_INF_SERVICES = "META-INF/services/"; //$NON-NLS-1$
37-
private List<Bundle> bundles;
38-
private Map<String, List<SPIMapping>> mappings = new ConcurrentHashMap<>();
37+
private final List<Bundle> bundles;
38+
private final Map<String, List<SPIMapping>> mappings = new ConcurrentHashMap<>();
3939

4040
SPIBundleClassLoader(List<Bundle> bundles) {
4141
super(null);

ui/org.eclipse.pde.junit.runtime/src/org/eclipse/pde/internal/junit/runtime/SPIMapping.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
* Contributors:
1111
* Christoph Läubrich - initial API and implementation
12-
*
12+
*
1313
*/
1414
package org.eclipse.pde.internal.junit.runtime;
1515

0 commit comments

Comments
 (0)