Skip to content

Commit

Permalink
Merge pull request #625 from TSGames/tests
Browse files Browse the repository at this point in the history
fix:set locale to en/us to format numbers with ".", not ","
  • Loading branch information
drewnoakes authored Aug 28, 2023
2 parents a81f8a0 + 919234b commit 858ea4a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/com/drew/tools/ProcessAllImagesInFolderUtility.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ public class ProcessAllImagesInFolderUtility
{
public static void main(String[] args) throws IOException
{
Locale.setDefault(new Locale("en", "US"));
System.setProperty("user.timezone", "Australia/Sydney");

List<String> directories = new ArrayList<String>();

FileHandler handler = null;
Expand Down

0 comments on commit 858ea4a

Please sign in to comment.