src/main/java/com/atlassian/uwc/converters/mediawiki/AttachmentConverter.java [100:110]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	protected boolean foundFile(Vector<String> soughtFilenames, String filename) {
		boolean found = soughtFilenames.contains(filename); 
		if (found) return found;
		// check for case insensitivity 
		Pattern caseInsensitiveFilename = Pattern.compile(filename, Pattern.CASE_INSENSITIVE);
		for (String soughtFile : soughtFilenames) {
			Matcher fileFinder = caseInsensitiveFilename.matcher(soughtFile);
			if (fileFinder.matches()) return true;
		}
		return false;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/atlassian/uwc/converters/vqwiki/AttachmentConverter.java [139:149]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		protected boolean foundFile(Vector<String> soughtFilenames, String filename) {
			boolean found = soughtFilenames.contains(filename); 
			if (found) return found;
			// check for case insensitivity 
			Pattern caseInsensitiveFilename = Pattern.compile(filename, Pattern.CASE_INSENSITIVE);
			for (String soughtFile : soughtFilenames) {
				Matcher fileFinder = caseInsensitiveFilename.matcher(soughtFile);
				if (fileFinder.matches()) return true;
			}
			return false;
		}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



