src/main/java/com/atlassian/uwc/converters/dokuwiki/ExternalInternalLinksConverter.java [12:22]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void convert(Page page) {
		String identifier = getExternalLinkIdentifier();
		log.debug("Converting External Internal Links containing: " + identifier);
		if (identifier == null) {
			log.info("Must set " + PROPKEY_IDENTIFIER + " property to use this converter. Skipping.");
			return;
		}
		String input = page.getOriginalText();
		String converted = convertExternalInternalLinks(input);
		page.setConvertedText(converted);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/atlassian/uwc/converters/mediawiki/ExternalInternalLinksConverter.java [17:27]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void convert(Page page) {
		String identifier = getExternalLinkIdentifier();
		log.debug("Converting External Internal Links containing: " + identifier);
		if (identifier == null) {
			log.info("Must set " + PROPKEY_IDENTIFIER + " property to use this converter. Skipping.");
			return;
		}
		String input = page.getOriginalText();
		String converted = convertExternalInternalLinks(input);
		page.setConvertedText(converted);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



