Skip to content

Commit

Permalink
Merge pull request #3109 from gacholio/fsd
Browse files Browse the repository at this point in the history
Fix inverted FSD test in DTFJ
  • Loading branch information
DanHeidinga committed Oct 3, 2018
2 parents 6d08f6e + 1a31819 commit eb4a37d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public Properties getJITProperties() throws DataUnavailable, CorruptDataExceptio
properties.setProperty("AOT", "disabled");
}

if (jitConfig.fsdEnabled().eq(new UDATA(0))) {
if (!jitConfig.fsdEnabled().eq(new UDATA(0))) {
properties.setProperty("FSD", "enabled");
} else {
properties.setProperty("FSD", "disabled");
Expand Down

0 comments on commit eb4a37d

Please sign in to comment.