use of no.stelar7.api.r4j.pojo.lol.staticdata.realm.Realm in project L4J8 by stelar7.
the class ImageAPI method buildImageURL.
private String buildImageURL(String version, String path, String file) {
Realm realm = DDragonAPI.getInstance().getRealm();
String cdn = realm.getCDN();
String versionString = version != null ? version : realm.getV();
String preReplace = cdn + Constants.SEPARATOR + versionString + Constants.SEPARATOR + path + Constants.SEPARATOR + file;
return preReplace.replace(" ", "%20");
}
Aggregations