Procházet zdrojové kódy

Fix the path separator used in the SingletonExtensionFactoryTest.java (#435)

tags/release-3.7.0
RationalityFrontline před 3 roky
rodič
revize
575abd034f
Žádný účet není propojen s e-mailovou adresou tvůrce revize

+ 1
- 1
pf4j/src/test/java/org/pf4j/SingletonExtensionFactoryTest.java Zobrazit soubor

@@ -74,7 +74,7 @@ public class SingletonExtensionFactoryTest {
private URL[] getClasspathReferences() throws MalformedURLException {
String classpathProperty = System.getProperty("java.class.path");

String[] classpaths = classpathProperty.split(":");
String[] classpaths = classpathProperty.split(File.pathSeparator);
URL[] uris = new URL[classpaths.length];

for (int index = 0; index < classpaths.length; index++) {

Načítá se…
Zrušit
Uložit