Skip to content

Commit 1da16b1

Browse files
authored
Merge pull request #3989 from IvenBach/Address_Issue_3954
Fixes a potential problem with project ID's.
2 parents 8c49772 + bdb5629 commit 1da16b1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Rubberduck.VBEEditor/Events/VbeEvents.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,7 @@ private void RegisterComponents(IVBProject project)
7272
return;
7373
}
7474

75-
if (string.IsNullOrWhiteSpace(project.ProjectId))
76-
{
77-
project.AssignProjectId();
78-
}
75+
project.AssignProjectId();
7976

8077
var components = project.VBComponents;
8178
_components.Add(project.ProjectId, components);

0 commit comments

Comments
 (0)