Remove useless code

This commit is contained in:
vrde 2015-06-01 15:37:02 +02:00
parent f50d28be98
commit 68827466ca
1 changed files with 0 additions and 10 deletions

View File

@ -52,16 +52,6 @@ class Fetch {
return url;
}
extractParamsFromUrl(url) {
let re = /\${(\w+)}/g;
let match = null;
let results = [];
while (match = re.exec(url)) {
results.push(match[1]);
}
return results;
}
prepareUrl(url, params) {
let newUrl = this.getUrl(url);
let re = /\${(\w+)}/g;