From 3e2312508ae53f82a9901f459cead7ded392c5d5 Mon Sep 17 00:00:00 2001 From: Torsten Bergmann Date: Sat, 27 Jan 2024 19:30:22 +0100 Subject: [PATCH] Do not use deprecated #next of UUIDGenerator in MicHTMLDocument>>#tempFileName Fix #679 --- src/Microdown-HTMLExporter/MicHTMLDocument.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microdown-HTMLExporter/MicHTMLDocument.class.st b/src/Microdown-HTMLExporter/MicHTMLDocument.class.st index 71a7176d..5058c62c 100644 --- a/src/Microdown-HTMLExporter/MicHTMLDocument.class.st +++ b/src/Microdown-HTMLExporter/MicHTMLDocument.class.st @@ -350,7 +350,7 @@ MicHTMLDocument >> tempFileName [ str << FileLocator temp fullName; << DiskStore delimiter asString; - << UUIDGenerator new next asString36; + << UUID new asString36; << '.html' ] ]