Skip to content

Commit

Permalink
Removed debug info.
Browse files Browse the repository at this point in the history
  • Loading branch information
Elorucov committed Oct 8, 2024
1 parent a7d516c commit d2f1919
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions L2/Converters/EqualMultiBindingConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,7 @@ namespace ELOR.Laney.Converters {
// Returns true if all values is same object.
internal class EqualMultiBindingConverter : IMultiValueConverter {
public object Convert(IList<object> values, Type targetType, object parameter, CultureInfo culture) {
bool ka = values.All(o => o == values[0]);
if (ka) {
string str = String.Join(", ", values);
Debug.WriteLine($"EqualMultiBindingConverter: {str}");
}
return ka;
return values.All(o => o == values[0]);
}
}
}

0 comments on commit d2f1919

Please sign in to comment.