Here you can find the source of normalizeToLUrl(String toLUrl)
public static String normalizeToLUrl(String toLUrl)
//package com.java2s; //License from project: Apache License public class Main { public static String normalizeToLUrl(String toLUrl) { String res = toLUrl.replace("http", "https"); res = res.replace("//treasuryoflives.org", "//www.treasuryoflives.org"); res = res.replace("//beta.treasuryoflives.org", "//www.treasuryoflives.org"); return res; }/*from w w w. j a v a2 s .c o m*/ }