Skip to content
Permalink
Browse files
7105: Unable to open graph-view if JMC is booted with JDK 8
Reviewed-by: hirt
  • Loading branch information
aptmac committed Apr 13, 2021
1 parent 033cc93 commit 7732a7c
Showing 1 changed file with 2 additions and 1 deletion.
@@ -38,6 +38,7 @@
import java.io.IOException;
import java.io.InputStream;
import java.text.MessageFormat;
import java.util.Arrays;
import java.util.Base64;
import java.util.List;
import java.util.concurrent.ExecutorService;
@@ -183,7 +184,7 @@ public void dispose() {

private class NodeThresholdSelection extends Action implements IMenuCreator {
private Menu menu;
private final List<Pair<String, Integer>> items = List.of(new Pair<>("100", 100), new Pair<>("500", 500),
private final List<Pair<String, Integer>> items = Arrays.asList(new Pair<>("100", 100), new Pair<>("500", 500),
new Pair<>("1000", 1000));

NodeThresholdSelection() {

0 comments on commit 7732a7c

Please sign in to comment.