We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c8e190 commit a322588Copy full SHA for a322588
visualvm/heapviewer/src/org/graalvm/visualvm/heapviewer/oql/OQLConsoleView.java
@@ -151,7 +151,7 @@
151
})
152
public class OQLConsoleView extends HeapViewerFeature {
153
154
- private static final int RESULTS_LIMIT = Integer.parseInt(System.getProperty("OQLController.limitResults", "100")); // NOI18N
+ private static final int RESULTS_LIMIT = Integer.getInteger("OQLController.limitResults", 100); // NOI18N
155
156
157
private static final String GRAALJS_CODENAMEBASE = "org.graalvm.visualvm.modules.graaljs"; // NOI18N
0 commit comments