Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurochi51 committed Sep 18, 2023
1 parent c84eceb commit badc953
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions TickTracker/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// This file is used by Code Analysis to maintain SuppressMessage
// attributes that are applied to this project.
// Project-level suppressions either have no target or are given
// a specific target and scoped to a namespace, type, member, etc.

// This file is used by Code Analysis to maintain SuppressMessage
// attributes that are applied to this project.
// Project-level suppressions either have no target or are given
// a specific target and scoped to a namespace, type, member, etc.

using System.Diagnostics.CodeAnalysis;

[assembly: SuppressMessage("Design", "MA0038:Make method static (deprecated, use CA1822 instead)", Justification = "Obsolete", Scope = "member", Target = "~M:TickTracker.Utilities.IsAddonReady(FFXIVClientStructs.FFXIV.Component.GUI.AtkUnitBase*)~System.Boolean")]
4 changes: 2 additions & 2 deletions TickTracker/Windows/DebugWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ public class DebugWindow : Window
/// <summary>
/// An <see cref="ConcurrentDictionary{TKey, TValue}" /> of Status IDs and Status Names that stop HP regen
/// </summary>
public ConcurrentDictionary<uint, string> DisabledHealthRegenDictionary{ get; set; } = new();
public ConcurrentDictionary<uint, string> DisabledHealthRegenDictionary { get; set; } = new();
/// <summary>
/// An <see cref="ConcurrentDictionary{TKey, TValue}" /> of Status IDs and Status Names that stop MP regen
/// </summary>
public ConcurrentDictionary<uint, string> DisabledManaRegenDictionary{ get; set; } = new();
public ConcurrentDictionary<uint, string> DisabledManaRegenDictionary { get; set; } = new();

private float hpWidth, mpWidth, disabledHPWidth, disabledMPWidth;
private bool invalidList, firstTime = true;
Expand Down

0 comments on commit badc953

Please sign in to comment.