Skip to content

Commit

Permalink
Disable some warning that I am getting tired of seeing
Browse files Browse the repository at this point in the history
  • Loading branch information
sarbian committed Oct 8, 2016
1 parent 33041dc commit e7e1a79
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions moduleManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Linq;
using System.Reflection;
Expand Down Expand Up @@ -468,6 +469,8 @@ public bool ElectionAndCheck()

public delegate void ModuleManagerPostPatchCallback();

[SuppressMessage("ReSharper", "StringLastIndexOfIsCultureSpecific.1")]
[SuppressMessage("ReSharper", "StringIndexOfIsCultureSpecific.1")]
public class MMPatchLoader : LoadingSystem
{
public int totalPatchCount = 0;
Expand Down

0 comments on commit e7e1a79

Please sign in to comment.