Skip to content

Commit ff452dc

Browse files
committed
Removed empty comments
1 parent f1f8aa2 commit ff452dc

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

src/Files.App/Converters/Converters.cs

-14
Original file line numberDiff line numberDiff line change
@@ -241,25 +241,11 @@ protected override Visibility Convert(object? value, object? parameter, string?
241241

242242
internal sealed partial class EmptyListToVisibilityConverter : ValueConverter<object?, Visibility>
243243
{
244-
/// <summary>
245-
/// Converts a source value to the target type.
246-
/// </summary>
247-
/// <param name="value"></param>
248-
/// <param name="parameter"></param>
249-
/// <param name="language"></param>
250-
/// <returns></returns>
251244
protected override Visibility Convert(object? value, object? parameter, string? language)
252245
{
253246
return (value is int count && count == 0) ? Visibility.Visible : Visibility.Collapsed;
254247
}
255248

256-
/// <summary>
257-
/// Converts a target value back to the source type.
258-
/// </summary>
259-
/// <param name="value"></param>
260-
/// <param name="parameter"></param>
261-
/// <param name="language"></param>
262-
/// <returns></returns>
263249
protected override object? ConvertBack(Visibility value, object? parameter, string? language)
264250
{
265251
return new NotSupportedException();

0 commit comments

Comments
 (0)