Skip to content

Commit 6f98f8f

Browse files
committed
Mark TODOs for discussion with TODO(vbreuss)
1 parent 948aa99 commit 6f98f8f

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

src/System.IO.Abstractions/DirectoryInfoWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public override void Refresh()
4242
/// <inheritdoc />
4343
public override IFileSystemInfo ResolveLinkTarget(bool returnFinalTarget)
4444
{
45-
//TODO: Unclear how to handle this case, as no explicit `FileSystemInfoWrapper` exists
45+
//TODO(vbreuss): Unclear how to handle this case, as no explicit `FileSystemInfoWrapper` exists
4646
//return instance.ResolveLinkTarget(returnFinalTarget);
4747
return null;
4848
}

src/System.IO.Abstractions/FileBase.Async.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ partial class FileBase
4444
public abstract Task WriteAllLinesAsync(string path, IEnumerable<string> contents, Encoding encoding, CancellationToken cancellationToken);
4545

4646
/// <inheritdoc />
47-
// TODO: Check where this overload comes from!
47+
// TODO(vbreuss): Check where this overload comes from!
4848
[Obsolete("This overload is no longer supported in the interface")]
4949
public abstract Task WriteAllLinesAsync(string path, string[] contents, CancellationToken cancellationToken);
5050

5151
/// <inheritdoc />
52-
// TODO: Check where this overload comes from!
52+
// TODO(vbreuss): Check where this overload comes from!
5353
[Obsolete("This overload is no longer supported in the interface")]
5454
public abstract Task WriteAllLinesAsync(string path, string[] contents, Encoding encoding, CancellationToken cancellationToken);
5555

src/System.IO.Abstractions/FileBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ internal FileBase() { }
281281
#else
282282
/// <inheritdoc cref="IFile.Move(string,string,bool)"/>
283283
#endif
284-
// TODO: Check how to proceed with this method, as `Move` was also implemented on .NET5
284+
// TODO(vbreuss): Check how to proceed with this method, as `Move` was also implemented on .NET5
285285
public abstract void Move(string sourceFileName, string destFileName, bool overwrite);
286286
#endif
287287

src/System.IO.Abstractions/FileInfoBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ internal FileInfoBase() { }
5858
#else
5959
/// <inheritdoc cref="IFileInfo.MoveTo(string,bool)"/>
6060
#endif
61-
// TODO: Check how to proceed with this method, as `Move` was also implemented on .NET5
61+
// TODO(vbreuss): Check how to proceed with this method, as `Move` was also implemented on .NET5
6262
public abstract void MoveTo(string destFileName, bool overwrite);
6363
#endif
6464

src/System.IO.Abstractions/FileInfoWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public override void Refresh()
4040
/// <inheritdoc />
4141
public override IFileSystemInfo ResolveLinkTarget(bool returnFinalTarget)
4242
{
43-
//TODO: Unclear how to handle this case, as no explicit `FileSystemInfoWrapper` exists
43+
//TODO(vbreuss): Unclear how to handle this case, as no explicit `FileSystemInfoWrapper` exists
4444
//return new FileSystemInfoWrapper(FileSystem, instance.ResolveLinkTarget(returnFinalTarget));
4545
return null;
4646
}

src/System.IO.Abstractions/FileSystemWatcherBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public static implicit operator FileSystemWatcherBase(FileSystemWatcher watcher)
8989
return null;
9090
}
9191

92-
//TODO: Unclear how we can implement this?!?
92+
//TODO(vbreuss): Unclear how we can implement this without a IFileSystem instance?!?
9393
return new FileSystemWatcherWrapper(null, watcher);
9494
}
9595

src/System.IO.Abstractions/FileWrapper.Async.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ public override Task WriteAllLinesAsync(string path, IEnumerable<string> content
8282
}
8383

8484
/// <inheritdoc />
85-
// TODO: Check where this overload comes from!
85+
// TODO(vbreuss): Check where this overload comes from!
8686
[Obsolete("This overload is no longer supported in the interface")]
8787
public override Task WriteAllLinesAsync(string path, string[] contents, CancellationToken cancellationToken)
8888
{
8989
return File.WriteAllLinesAsync(path, contents, cancellationToken);
9090
}
9191

9292
/// <inheritdoc />
93-
// TODO: Check where this overload comes from!
93+
// TODO(vbreuss): Check where this overload comes from!
9494
[Obsolete("This overload is no longer supported in the interface")]
9595
public override Task WriteAllLinesAsync(string path, string[] contents, Encoding encoding, CancellationToken cancellationToken)
9696
{

0 commit comments

Comments
 (0)