Skip to content

Commit e8eb04b

Browse files
Merge branch 'dev/jaredpar/net10' of http://github.com/dotnet/roslyn into dev/jaredpar/net10
2 parents d82524e + ec414bd commit e8eb04b

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/Compilers/Core/Portable/MetadataReader/PEModule.cs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2338,19 +2338,6 @@ private static bool CrackBoolAndStringInAttributeValue(out BoolAndStringData val
23382338
return false;
23392339
}
23402340

2341-
private static bool CrackBoolAndBoolInAttributeValue(out (bool, bool) value, ref BlobReader sig)
2342-
{
2343-
if (CrackBooleanInAttributeValue(out bool item1, ref sig) &&
2344-
CrackBooleanInAttributeValue(out bool item2, ref sig))
2345-
{
2346-
value = (item1, item2);
2347-
return true;
2348-
}
2349-
2350-
value = default;
2351-
return false;
2352-
}
2353-
23542341
private static bool CrackBooleanInAttributeValue(out bool value, ref BlobReader sig)
23552342
{
23562343
if (sig.RemainingBytes >= 1)

0 commit comments

Comments
 (0)