From 784538a385394b8c13a83dfed442d728ccf6523b Mon Sep 17 00:00:00 2001 From: Vzor- Date: Mon, 9 Sep 2024 00:23:19 -0400 Subject: [PATCH] added 'static' --- src/qz/ui/component/CertificateTable.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qz/ui/component/CertificateTable.java b/src/qz/ui/component/CertificateTable.java index 4c2b6236..2805a9d9 100644 --- a/src/qz/ui/component/CertificateTable.java +++ b/src/qz/ui/component/CertificateTable.java @@ -18,7 +18,8 @@ */ public class CertificateTable extends DisplayTable implements Themeable { private Certificate cert; - private final TimeZone utcTimeZone = TimeZone.getTimeZone("UTC"); + + private static final TimeZone utcTimeZone = TimeZone.getTimeZone("UTC"); private Instant warn; private Instant now; private boolean useLocalTimezone = false;