Skip to content

Commit 9e1db2f

Browse files
committed
Fixed an issue maybe?
1 parent bbf0fdd commit 9e1db2f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/main/java/org/mangorage/bootstrap/Bootstrap.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,16 @@ public static void main(String[] args) throws Throwable {
6868

6969
final Map<String, ILaunchTarget> launchTargetMap = new HashMap<>();
7070

71-
ServiceLoader.load(moduleLayer, ILaunchTarget.class)
72-
.stream()
73-
.forEach(provider -> {
74-
try {
75-
final var target = provider.get();
76-
launchTargetMap.put(target.getId(), target);
77-
} catch (Exception e) {
78-
throw new IllegalStateException(e);
79-
}
80-
});
71+
// ServiceLoader.load(moduleLayer, ILaunchTarget.class)
72+
// .stream()
73+
// .forEach(provider -> {
74+
// try {
75+
// final var target = provider.get();
76+
// launchTargetMap.put(target.getId(), target);
77+
// } catch (Exception e) {
78+
// throw new IllegalStateException(e);
79+
// }
80+
// });
8181

8282
// Only add if we dont have any other launch targets...
8383
if (launchTargetMap.isEmpty()) {

0 commit comments

Comments
 (0)