All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.redfin.sitemapgenerator.UrlUtils Maven / Gradle / Ivy

The newest version!
package com.redfin.sitemapgenerator;

import java.util.HashMap;

class UrlUtils {

	static void checkUrl(String url, String baseUrl) {
		// Is there a better test to use here?
		if (!url.startsWith(baseUrl)) {
			throw new RuntimeException("Url " + url + " doesn't start with base URL " + baseUrl);
		}
	}

	static  HashMap newHashMap() {
		return new HashMap();
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy