mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 14:00:21 +00:00
Remove unnecessary assignment
PIDIV.None is equivalent to a zeroed field.
This commit is contained in:
parent
daf9ad76c9
commit
0605a01b24
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace PKHeX.Core;
|
||||
|
||||
|
@ -70,7 +70,7 @@ public sealed class LegalInfo : IGeneration
|
|||
}
|
||||
|
||||
public bool PIDParsed { get; private set; }
|
||||
private PIDIV _pidiv = PIDIV.None;
|
||||
private PIDIV _pidiv;
|
||||
|
||||
/// <summary>Indicates whether or not the <see cref="PIDIV"/> can originate from the <see cref="EncounterMatch"/>.</summary>
|
||||
/// <remarks>This boolean is true until all valid <see cref="PIDIV"/> encounters are tested, after which it is false.</remarks>
|
||||
|
|
Loading…
Reference in a new issue