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
I'm using GWT 2.7.0 and gwtquery 1.4.3 and I've encountered the following bug:
When using public static <T> T prop(JavaScriptObject o, Object id) to retrieve a property that contains an empty String, it instead returns null.
The following snippet of code can be used to replicate the problem:
Hi,
I'm using GWT 2.7.0 and gwtquery 1.4.3 and I've encountered the following bug:
When using
public static <T> T prop(JavaScriptObject o, Object id)
to retrieve a property that contains an empty String, it instead returnsnull
.The following snippet of code can be used to replicate the problem:
Here, I expected property to be an empty String, but instead it was
null
.In order to get the empty String I had to use Properties, as can be seen in the following snippet of code:
However, I expected the first snippet to return the same value.
Thanks,
Luís
The text was updated successfully, but these errors were encountered: