class AssertTrue { void bar() { final boolean b = call(); if (Assertions.assertTrue(b)) { if(b) {} } } boolean call() {return true;} }