File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
ui/org.eclipse.pde.junit.runtime/src/org/eclipse/pde/internal/junit/runtime Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 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 ;
You can’t perform that action at this time.
0 commit comments