Searched defs:oldSet (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DUpgradeEntitlementSubConfigsStep.java219 * set if both oldSet and newSet are null, or newSet if the contents of oldSet and newSet differ.
240 * set if both oldSet and newSet are null, or newSet if the contents of oldSet and newSet differ.
244 * @param oldSet The older set of data. May be null.
249 private void captureDifferentSet(Set<String> oldSet, Set<String> newSet, argument
255 if (oldSet == null && newSet == null) {
257 } else if (newSet != null && !newSet.equals(oldSet)) {
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DUpgradeEntitlementSubConfigsStep.java224 * set if both oldSet and newSet are null, or newSet if the contents of oldSet and newSet differ.
245 * set if both oldSet and newSet are null, or newSet if the contents of oldSet and newSet differ.
249 * @param oldSet The older set of data. May be null.
254 private void captureDifferentSet(Set<String> oldSet, Set<String> newSet, argument
260 if (oldSet == null && newSet == null) {
262 } else if (newSet != null && !newSet.equals(oldSet)) {

Completed in 523 milliseconds