]> WPIA git - gigi.git/commitdiff
Merge "chg: use imported name"
authorFelix Dörre <felix@dogcraft.de>
Mon, 17 Dec 2018 19:40:02 +0000 (20:40 +0100)
committerGerrit Code Review <gigi-system@dogcraft.de>
Mon, 17 Dec 2018 19:40:02 +0000 (20:40 +0100)
src/club/wpia/gigi/pages/main/CertStatusRequestForm.java

index dd863176f52cd6e3b97f82c7486110f4cc17fa2b..5d23f67f26b8b59af5987af6713dd7d548e7f778 100644 (file)
@@ -47,7 +47,7 @@ public class CertStatusRequestForm extends Form {
         }
 
         if (c.getStatus() == CertificateStatus.REVOKED) {
-            java.util.Date revocationDate = c.getRevocationDate();
+            Date revocationDate = c.getRevocationDate();
             throw new PermamentFormException(new GigiApiException(SprintfCommand.createSimple("Certificate has been revoked on {0}.", revocationDate)));
         }
         if (c.getExpiryDate().before(new Date())) {