More ReSharper suggestions

This commit is contained in:
2015-11-02 21:21:57 -05:00
parent d8d7a9b5ba
commit 87c218de3c
32 changed files with 475 additions and 584 deletions

View File

@@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace FeedCenter
@@ -51,19 +50,19 @@ namespace FeedCenter
return title;
}
public void ProcessActions(IEnumerable<FeedAction> feedActions)
{
foreach (FeedAction feedAction in feedActions)
{
switch (feedAction.Field)
{
case 1:
//public void ProcessActions(IEnumerable<FeedAction> feedActions)
//{
// foreach (FeedAction feedAction in feedActions)
// {
// switch (feedAction.Field)
// {
// case 1:
Title = Regex.Replace(Title, feedAction.Search, feedAction.Replace);
break;
}
}
}
// Title = Regex.Replace(Title, feedAction.Search, feedAction.Replace);
// break;
// }
// }
//}
#endregion
}