Jochen Kemnade created GROOVY-8064:
--------------------------------------
Summary: Confusing error message when trying to access a property
which is actually a function
Key: GROOVY-8064
URL: https://issues.apache.org/jira/browse/GROOVY-8064
Project: Groovy
Issue Type: Improvement
Affects Versions: 2.4.8
Reporter: Jochen Kemnade
Priority: Minor
{code}
groovy:000> new File('/tmp').lastModified
ERROR groovy.lang.MissingPropertyException:
No such property: lastModified for class: java.io.File
Possible solutions: lastModified
{code}
{{lastModified}} is actually a method, so I should have used {{new
File('/tmp').lastModified()}}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)