- The return null situation is no longer crazy.

This commit is contained in:
Maplewheels
2026-01-25 17:16:50 -05:00
parent adf9303a7e
commit 295c365a8f
@@ -136,8 +136,11 @@ public class PluginManagementService : IPluginManagementService, IAssemblyManage
{ {
continue; continue;
} }
return isByRefType ? type.MakeByRefType() : type; return isByRefType ? type.MakeByRefType() : type;
} }
return null;
} }
public FluentResults.Result LoadAssemblyResources(ImmutableArray<IAssemblyResourceInfo> resource) public FluentResults.Result LoadAssemblyResources(ImmutableArray<IAssemblyResourceInfo> resource)