Friday, October 12, 2018

Re: Passing method references to HTMLElement.removeEventHandler

Method references and lambdas are anonymous implementations. Each usage will create a new instance.

Even in pure Java you have

Runnable r = this::onClick;
Runnable r2 = this::onClick;
System.out.println(Objects.equals(r, r2)); // false


So you should keep track of your click handler if you want to remove it later.

-- J.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment