Skip to content

Commit

Permalink
fixed: #601
Browse files Browse the repository at this point in the history
  • Loading branch information
dadhi committed Nov 12, 2023
1 parent fd09e19 commit cb8bd41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DryIoc/Container.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14367,7 +14367,7 @@ public string TryGetDetails(IContainer container)
if (factoryId > ushort.MaxValue)
{
var decoratorFactoryId = factoryId & ushort.MaxValue;
factoryId >>>= 16;
factoryId >>= 16;
decoratorMessage = GetDecoratorMessage(container, decoratorFactoryId);
static string GetDecoratorMessage(IContainer container, int decoratorFactoryId)
{
Expand Down

0 comments on commit cb8bd41

Please sign in to comment.