Introduce a new variable instead of reusing the parameter "url"

Dieses mal keine Frage, sondern nur ein Hinweis an Shopware:

In der Datei \themes\Frontend\Responsive\frontend_public\src\js\jquery.search.js steht an Zeile folgende Funktion (SW 5.6.x):

var convertUrlToRelativeUrl = function(url) {
 url = url.replace('https:', '');
 url = url.replace('http:', '');

 return url;
};

Wenn man dies in einem Plugin so benutzt, dann wird es im Shopware Store als Fehler erkannt:

Introduce a new variable instead of reusing the parameter „url“

Nur so als Hinweis.