javalang icon indicating copy to clipboard operation
javalang copied to clipboard

missing method invocation

Open Hareem-E-Sahar opened this issue 1 year ago • 0 comments

Why does javalang not recognise getPayload as a method invocation?

public class Test {
	public void onApplicationEvent(ApplicationEvent event) {
		String payload = (String) ((Message)source).getPayload();
		
	}
}

Hareem-E-Sahar avatar Dec 10 '23 06:12 Hareem-E-Sahar