mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
Code quality fixes (NullReference checks, unused variables etc)
This commit is contained in:
parent
6ab6033f85
commit
ac08533727
99 changed files with 1252 additions and 1312 deletions
|
@ -18,20 +18,21 @@
|
|||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
using System;
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
using Greenshot.Plugin;
|
||||
using GreenshotPlugin.Core;
|
||||
using Greenshot.IniFile;
|
||||
using log4net;
|
||||
|
||||
namespace Greenshot.Processors {
|
||||
/// <summary>
|
||||
/// Description of TitleFixProcessor.
|
||||
/// </summary>
|
||||
public class TitleFixProcessor : AbstractProcessor {
|
||||
private static log4net.ILog LOG = log4net.LogManager.GetLogger(typeof(TitleFixProcessor));
|
||||
private static ILog LOG = LogManager.GetLogger(typeof(TitleFixProcessor));
|
||||
private static CoreConfiguration config = IniConfig.GetIniSection<CoreConfiguration>();
|
||||
|
||||
public TitleFixProcessor() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue