Don't use Assert class from loader
Remove the use of `Assert` since it's unavailable that early.
This commit is contained in:
parent
d9fb4dd477
commit
1640add8be
|
@ -31,8 +31,6 @@ import java.util.Collections;
|
|||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
/**
|
||||
* A class path index file that provides ordering information for JARs.
|
||||
*
|
||||
|
@ -51,8 +49,10 @@ final class ClassPathIndexFile {
|
|||
}
|
||||
|
||||
private String extractName(String line) {
|
||||
Assert.state(line.startsWith("- \"") && line.endsWith("\""), "Malformed classpath index line [" + line + "]");
|
||||
return line.substring(3, line.length() - 1);
|
||||
if (line.startsWith("- \"") && line.endsWith("\"")) {
|
||||
return line.substring(3, line.length() - 1);
|
||||
}
|
||||
throw new IllegalStateException("Malformed classpath index line [" + line + "]");
|
||||
}
|
||||
|
||||
int size() {
|
||||
|
|
Loading…
Reference in New Issue