another print

This commit is contained in:
Roberto Cirillo 2023-02-16 16:57:07 +01:00
parent 280e6877b5
commit aaa8cdd631
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,6 @@ public class ServiceEndpointResource {
for (ServiceEndpoint.AccessPoint ap : aps){
String decrypted =encryptString(ap.password());
String user= ap.username();
ap.credentials(decrypted, user);
}
return resource;
@ -155,6 +154,7 @@ public class ServiceEndpointResource {
}
private static String encryptString(String toEncrypt){
log.debug("encrypting string");
try{
return StringEncrypter.getEncrypter().encrypt(toEncrypt);
}catch(Exception e) {