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
The value isn't properly converted to a string using the Java .toString method.
Also, the toString method shouldn't return a Promise<string>, it should return a string.
Therefore, the toStringSync method is useless and should be replaced by a toStringAsync returning a Promise<string>.
The text was updated successfully, but these errors were encountered:
Currently, when an object is converted to a string using
The value isn't properly converted to a string using the Java
.toString
method.Also, the
toString
method shouldn't return aPromise<string>
, it should return astring
.Therefore, the
toStringSync
method is useless and should be replaced by atoStringAsync
returning aPromise<string>
.The text was updated successfully, but these errors were encountered: