Skip to content

Commit

Permalink
added 'static'
Browse files Browse the repository at this point in the history
  • Loading branch information
Vzor- committed Sep 9, 2024
1 parent a7462d0 commit 784538a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/qz/ui/component/CertificateTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 784538a

Please sign in to comment.