You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package com.example.demo;
import java.util.function.Supplier;
public class MyFilter {
public void filter() {
if (true) {
Response response = new Response();
response.beforeCommit(() -> {
return null;
});
}
}
private static class Response {
public void beforeCommit(Supplier<Object> supplier) {
}
}
}
if you try to invoke completions at response. you will not get any completions. The completions will start work if you take that statement out of if block or remove the lambda block parameter.
The text was updated successfully, but these errors were encountered:
if you try to invoke completions at
response.
you will not get any completions. The completions will start work if you take that statement out of if block or remove the lambda block parameter.The text was updated successfully, but these errors were encountered: