We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e5ddfb commit 8aa623cCopy full SHA for 8aa623c
1 file changed
src/MsgPack/Serialization/SerializerDebugging.cs
@@ -296,7 +296,10 @@ public static void DeletePastTemporaries()
296
297
foreach ( var pastAssembly in File.ReadAllLines( historyFilePath ) )
298
{
299
- File.Delete( pastAssembly );
+ if ( !String.IsNullOrEmpty( pastAssembly ) )
300
+ {
301
+ File.Delete( pastAssembly );
302
+ }
303
}
304
305
new FileStream( historyFilePath, FileMode.Truncate ).Close();
0 commit comments