Skip to content
Snippets Groups Projects
Commit e4e90bd9 authored by Mick Jordan's avatar Mick Jordan
Browse files

Provide finer control over FastRConfig.

parent cde8c85f
Branches
No related tags found
No related merge requests found
......@@ -38,7 +38,12 @@ public final class FastRConfig {
static {
String managedModeVal = System.getenv("FASTR_MANAGED");
ManagedMode = managedModeVal != null && managedModeVal.equals("true");
InternalGridAwtSupport = !ManagedMode;
if (ManagedMode) {
InternalGridAwtSupport = false;
} else {
String val = System.getProperty("fastr.internal.grid.awt.support");
InternalGridAwtSupport = val == null || val.equals("true");
}
}
private FastRConfig() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment