Skip to content

Commit

Permalink
Removes old ProjectID check
Browse files Browse the repository at this point in the history
  • Loading branch information
ThunderFrame committed Jun 7, 2016
1 parent 70a49e9 commit 8d9bc9d
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Rubberduck.Parsing/VBA/RubberduckParserState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,6 @@ public void AddProject(VBProject project)
return;
}

//if (string.IsNullOrEmpty(project.HelpFile))
//{
// project.HelpFile = project.GetHashCode().ToString();
//}
while (string.IsNullOrEmpty(project.HelpFile) || _projects.Any(a => a.Key == project.HelpFile))
{
project.HelpFile = (project.GetHashCode() ^ project.HelpFile.GetHashCode()).ToString();
Expand Down

0 comments on commit 8d9bc9d

Please sign in to comment.