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 @Override
public boolean isExpired() { public boolean isValid() {
return false; return true;
} }
} }