Skip to content

Commit

Permalink
Fixup build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpar committed Mar 20, 2020
1 parent e295351 commit e159727
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,6 @@ protected ImmutableArray<ResolvedReference> ResolveMetadataReferences(

if (metadata != null)
{
Debug.Assert(metadata != null);

switch (peReference.Properties.Kind)
{
case MetadataImageKind.Assembly:
Expand All @@ -323,7 +321,7 @@ protected ImmutableArray<ResolvedReference> ResolveMetadataReferences(

if (assemblyMetadata.IsValidAssembly())
{
PEAssembly assembly = assemblyMetadata.GetAssembly();
PEAssembly? assembly = assemblyMetadata.GetAssembly();
Debug.Assert(assembly is object);
existingReference = TryAddAssembly(
assembly.Identity,
Expand Down

0 comments on commit e159727

Please sign in to comment.