Skip to content

Commit

Permalink
Use short for timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
Moresteck committed Jul 2, 2024
1 parent d988737 commit 425b5ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/uk/betacraft/jaranalyzer/JarAnalyzer.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

public class JarAnalyzer {
// assuming UTC by default
private static final String tzID = System.getProperty("timezone", "UTC");
private static final String tzID = System.getProperty("tz", "UTC");
private static TimeZone tz = TimeZone.getTimeZone(tzID);

public static void main(String[] args) {
Expand Down

0 comments on commit 425b5ad

Please sign in to comment.