correction for the output string of policies

This commit is contained in:
Lucio Lelii 2022-03-07 16:35:33 +01:00
parent f66c16e566
commit 4cdd9627b7
1 changed files with 2 additions and 1 deletions

View File

@ -128,8 +128,9 @@ public class PolicyAuth implements Serializable {
return toReturn.append(":").append("*").toString();
toReturn.append(":").append(serviceName);
if (serviceId!=null)
toReturn.append(":").append(serviceId);
return toReturn.append(":").append(serviceId).toString();
toReturn.append(":").append("*");
return toReturn.toString();
}
/*