Skip to content

Commit

Permalink
Adjusting prefix for tmp-files for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
lassetyr committed Apr 30, 2024
1 parent f6aff21 commit 9cef52e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public Siri parseXml(SubscriptionSetup subscriptionSetup, InputStream xml)
unmarshaller.setEventHandler(schemaValidationHandler);

// Write full stream-contents to disk for easier debugging
File targetFile = File.createTempFile(subscriptionSetup.getVendor(), ".xml");
File targetFile = File.createTempFile(subscriptionSetup.getVendor() + "-", ".xml");

Files.copy(
xml,
Expand Down

0 comments on commit 9cef52e

Please sign in to comment.