Skip to content

Commit c0ab189

Browse files
committed
reformat
1 parent b0be2bb commit c0ab189

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

OpenWith/Filters/impl/ExtensionFilter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public static ExtensionFilter Build(object config) {
1212
if (config is IEnumerable<object> list) {
1313
return new ExtensionFilter(list.Where(s => s != null).Select(s => s.ToString()));
1414
}
15-
if(config != null) {
15+
if (config != null) {
1616
return new ExtensionFilter(config.ToString());
1717
}
1818
return null;

OpenWith/Filters/impl/FilterFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace OpenWith.Filters.impl
66
public class FilterFactory : IFilterFactory
77
{
88
private readonly Dictionary<string, Func<object, IFilter>> _registry = new Dictionary<string, Func<object, IFilter>>();
9-
9+
1010
public FilterFactory WithFilter(string key, Func<object, IFilter> builder) {
1111
_registry[key] = builder;
1212
return this;

0 commit comments

Comments
 (0)