Wolfgang-Schuetzelhofer / jcypher

Java access to Neo4J graph databases at multiple levels of abstraction
Apache License 2.0
86 stars 15 forks source link

DomainObjectMatch attribute methods are misspelt #3

Closed rbramley closed 8 years ago

rbramley commented 9 years ago

Various methods carry through a typo of atttribute, which isn't reflected in the Javadoc for the methods e.g.:

/**
 * Access an attribute, don't rely on a specific attribute type
 * @param name the attribute name
 * @return
 */
public JcProperty atttribute(String name) {
    return checkField_getJcVal(name, JcProperty.class);
}