in src/main/java/org/apache/cxf/cwiki/ConfluenceCleanupWriter.java [65:79]
private String findPageWithURL(String url) throws Exception {
String location = findPageWithURL(exporter, url);
if (location == null) {
for (SiteExporter siteExporter : SiteExporter.siteExporters) {
if (exporter == siteExporter) {
continue;
}
location = findPageWithURL(siteExporter, url);
if (location != null) {
break;
}
}
}
return location;
}