changed due to new security library

This commit is contained in:
lucio 2024-05-07 12:25:51 +02:00
parent a0a58f344b
commit 28bb027c85
1 changed files with 4 additions and 2 deletions

View File

@ -30,9 +30,11 @@ public class ICSecret extends Secret{
}
@Override
public boolean isExpired() {
return false;
public boolean isValid() {
return true;
}
}