Updated all the TODO: comments in the Umbraco.Core project so they are all in the same format. ( // TODO: ) (#4220)
Also moved some of the comments so they are will work better / are not within Code Documentation comments
This commit is contained in:
committed by
Sebastiaan Janssen
parent
43a97185b6
commit
a13a38a482
@@ -153,7 +153,7 @@ namespace Umbraco.Core.IO
|
||||
if (directory == null) throw new InvalidOperationException("Could not get directory.");
|
||||
Directory.CreateDirectory(directory); // ensure it exists
|
||||
|
||||
if (stream.CanSeek) // todo - what if we cannot?
|
||||
if (stream.CanSeek) // TODO: what if we cannot?
|
||||
stream.Seek(0, 0);
|
||||
|
||||
using (var destination = (Stream) File.Create(fullPath))
|
||||
|
||||
Reference in New Issue
Block a user