Fixed calledMethod set

This commit is contained in:
Luca Frosini 2020-03-12 19:22:27 +01:00
parent 506656580e
commit f3b3c038db
1 changed files with 2 additions and 0 deletions

View File

@ -63,6 +63,7 @@ public class Access {
for(String value : pathValues) {
stringWriter.append(first ? " /" : "/");
stringWriter.append(value);
first=false;
}
first = true;
if(map != null) {
@ -71,6 +72,7 @@ public class Access {
stringWriter.append(key);
stringWriter.append("=");
stringWriter.append(map.get(key));
first=false;
}
}
CalledMethodProvider.instance.set(stringWriter.toString());