Author: andreapatricelli Date: Fri Jun 6 15:20:29 2014 New Revision: 1600913
URL: http://svn.apache.org/r1600913 Log: corrected for-cycle in ConnObjectUtil, switched to correct list Modified: syncope/branches/1_1_X/core/src/main/java/org/apache/syncope/core/connid/ConnObjectUtil.java Modified: syncope/branches/1_1_X/core/src/main/java/org/apache/syncope/core/connid/ConnObjectUtil.java URL: http://svn.apache.org/viewvc/syncope/branches/1_1_X/core/src/main/java/org/apache/syncope/core/connid/ConnObjectUtil.java?rev=1600913&r1=1600912&r2=1600913&view=diff ============================================================================== --- syncope/branches/1_1_X/core/src/main/java/org/apache/syncope/core/connid/ConnObjectUtil.java (original) +++ syncope/branches/1_1_X/core/src/main/java/org/apache/syncope/core/connid/ConnObjectUtil.java Fri Jun 6 15:20:29 2014 @@ -649,7 +649,7 @@ public class ConnObjectUtil { } currentAttrMap = attributableTO.getVirtualAttributeMap(); - for (AttributeTO templateVirAttr : template.getDerivedAttributes()) { + for (AttributeTO templateVirAttr : template.getVirtualAttributes()) { if (templateVirAttr.getValues() != null && !templateVirAttr.getValues().isEmpty() && (!currentAttrMap.containsKey(templateVirAttr.getSchema()) || currentAttrMap.get(templateVirAttr.getSchema()).getValues().isEmpty())) {
