Skip to content

Commit

Permalink
Issue #21: Added extra fail-safe to force boolean binding to update b…
Browse files Browse the repository at this point in the history
…efore evaluating it.
  • Loading branch information
brobert committed Feb 24, 2016
1 parent 24e9fd1 commit 4f57695
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ private void assertResults(RunnerResult result, boolean completelySuccessful, bo
}

private boolean isBindingTrue(BooleanBinding binding) {
binding.invalidate();
return binding != null && binding.getValue() != null && binding.get();
}
}

0 comments on commit 4f57695

Please sign in to comment.