As of March 3, 2025, Jira and Confluence support queue/operations have been moved from ServiceNow to Jira Service Management (JSM). Please raise support requests by visiting the JSM Portal.
Instead of the method parameter use an additional local variable with the same value assigned; i.e. instead of:
public void observe(@Observes @Juicy String payload) {
Arrays.asList( "foo" ).stream().filter((s) -> s.equals(payload));
}
use this:
public void observe(@Observes @Juicy String payload) {
String p = payload;
Arrays.asList( "foo" ).stream().filter((s) -> s.equals(p));
}