Skip to content

Commit

Permalink
rename param
Browse files Browse the repository at this point in the history
  • Loading branch information
maisiesadler committed Aug 4, 2021
1 parent a560151 commit b9b71cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Lively.Diagrams/FullNamePlantUml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ namespace Lively.Diagrams
{
public class FullNamePlantUml
{
public static string Create(IList<DependencyTreeNode> nodes, string[] namespaceMatches = null)
public static string Create(IList<DependencyTreeNode> nodes, string[] customNamespaceGrouping = null)
{
var renderer = new PlantUmlRenderer(type =>
{
if (namespaceMatches != null)
if (customNamespaceGrouping != null)
{
foreach (var ns in namespaceMatches)
foreach (var ns in customNamespaceGrouping)
{
if (type.FullName.StartsWith(ns + "."))
return OverrideNamespaceGrouping(ns, type.FullName);
Expand Down

0 comments on commit b9b71cb

Please sign in to comment.