Skip to content

Commit

Permalink
removed erronius 'static'
Browse files Browse the repository at this point in the history
  • Loading branch information
Vzor- committed Sep 9, 2024
1 parent a0ce24c commit a7462d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qz/ui/component/CertificateTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
* Displays Certificate information in a JTable
*/
public class CertificateTable extends DisplayTable implements Themeable {
private static Certificate cert;
private static final TimeZone utcTimeZone = TimeZone.getTimeZone("UTC");
private Certificate cert;
private final TimeZone utcTimeZone = TimeZone.getTimeZone("UTC");
private Instant warn;
private Instant now;
private boolean useLocalTimezone = false;
Expand Down

0 comments on commit a7462d0

Please sign in to comment.