Skip to content

Commit

Permalink
fixed the build
Browse files Browse the repository at this point in the history
  • Loading branch information
dadhi committed Nov 12, 2023
1 parent 1fb58ac commit 35302ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/DryIoc/Container.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10231,8 +10231,10 @@ public StringBuilder PrintCurrent(StringBuilder s = null)

if (ServiceTypeOrInfo is ParameterInfo pi)
s.Append(ParameterServiceInfo.Of(pi));
else if (ServiceTypeOrInfo is Type t)
s.Print(t);
else
s.Print((Type)ServiceTypeOrInfo);
s.Print(ServiceTypeOrInfo);

var f = Factory;
if (f != null && f is ReflectionFactory == false)
Expand Down

0 comments on commit 35302ae

Please sign in to comment.