We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa675b3 commit 88fb7beCopy full SHA for 88fb7be
affinity/src/main/java/net/openhft/affinity/BootClassPath.java
@@ -47,7 +47,7 @@ public final boolean has(String binaryClassName) {
47
private static Set<String> getResourcesOnBootClasspath() {
48
final Logger logger = LoggerFactory.getLogger(BootClassPath.class);
49
final Set<String> resources = new HashSet<>();
50
- final String bootClassPath = System.getProperty("sun.boot.class.path");
+ final String bootClassPath = System.getProperty("sun.boot.class.path", "");
51
logger.trace("Boot class-path is: {}", bootClassPath);
52
53
final String pathSeparator = System.getProperty("path.separator");
0 commit comments