We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9a4765 commit 727921aCopy full SHA for 727921a
src/Imageflow/IO/TemporaryFileProviders.cs
@@ -49,7 +49,7 @@ public static ITemporaryFileProvider CreateProvider()
49
50
public ITemporaryFile Create(bool cleanup,long capacity)
51
{
52
- if (!cleanup) throw new InvalidOperationException("Memory Mapped Files cannot be persisted")
+ if (!cleanup) throw new InvalidOperationException("Memory Mapped Files cannot be persisted");
53
var name = Guid.NewGuid().ToString();
54
var file = MemoryMappedFile.CreateNew(name, capacity);
55
return new TemporaryMemoryFile(file, name);
0 commit comments