if (!suppressNotification)
{
if (nodesCreated.size() > 0)
{
Notifier n = cache.getNotifier();
for (Fqn temp : nodesCreated)
{
n.notifyNodeCreated(temp, true, ctx);
n.notifyNodeCreated(temp, false, ctx);
if (trace) log.trace("Notifying cache of node created in workspace " + temp);
}
}
}
}