// "Replace with lambda" "true" class A { { bar(() -> foo()); } private void bar(ThrowableComputable throwableComputable) {} private K foo() throws Exception { return null; } interface ThrowableComputable { T compute() throws T1; } }