File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
src/main/java/org/mangorage/bootstrap Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff 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 ()) {
You can’t perform that action at this time.
0 commit comments