Skip to content

Commit 85b502b

Browse files
trancexpresslaeubi
authored andcommitted
Make SPIBundleClassLoader public
Fixes: #2125
1 parent ccc10e6 commit 85b502b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@
3131
* The classloader wraps the OSGi provided one but gives access for the JUnit
3232
* runer to any SPI declared services.
3333
*/
34-
class SPIBundleClassLoader extends ClassLoader {
34+
public class SPIBundleClassLoader extends ClassLoader {
3535

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

41-
SPIBundleClassLoader(List<Bundle> bundles, int junitVersion) {
41+
public SPIBundleClassLoader(List<Bundle> bundles, int junitVersion) {
4242
super(null);
4343
this.bundles = bundles;
4444
this.junitVersion = junitVersion;

0 commit comments

Comments
 (0)