homberghp commented on issue #8594: URL: https://github.com/apache/netbeans/issues/8594#issuecomment-2983290895
With the information given, I can reproduce the error. The problem may lie in the fact that the user uses `var` instead of a proper type. This means that the hints engine has no clue on what expected return type of the `getAllSizeWBpsas(store, bar);` should be. Hence, it thinks the return type is unspecified (`none`), nor void. The user can prevent the issue by supplying a type. For NetBeans hints: If the return type is not known, maybe first hint to provide a type, then hint to create method. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
