CLASS_NODE_TO_WHITE_LIST_PROPERTY_NAMES.put(classNode, propertyNamesToIncludeInWhiteList);
Map allAssociationMap = GrailsASTUtils.getAllAssociationMap(classNode);
for (String associationName : allAssociationMap.keySet()) {
<<<<<<< HEAD
if (!propertyNamesToIncludeInWhiteList.contains(associationName)) {
=======
if(!propertyNamesToIncludeInWhiteList.contains(associationName) && !unbindablePropertyNames.contains(associationName)) {
>>>>>>> 549aa8c9adc454157c219ca89a18bde79b088a56
propertyNamesToIncludeInWhiteList.add(associationName);
}
} |