Fixed code

This commit is contained in:
Luca Frosini 2022-03-01 11:36:00 +01:00
parent a495c5871e
commit e714b058df
1 changed files with 3 additions and 1 deletions

View File

@ -30,7 +30,9 @@ public class SecretManagerProvider {
public void reset(){
SecretManager secretManager = thread.get();
secretManager.reset();
if(secretManager!=null) {
secretManager.reset();
}
thread.remove();
}