diff --git a/Assets/SEE/Tools/ReflexionAnalysis/ReflexionAnalysis.cs b/Assets/SEE/Tools/ReflexionAnalysis/ReflexionAnalysis.cs index 4e4b9ba90a..99690a112e 100644 --- a/Assets/SEE/Tools/ReflexionAnalysis/ReflexionAnalysis.cs +++ b/Assets/SEE/Tools/ReflexionAnalysis/ReflexionAnalysis.cs @@ -218,7 +218,7 @@ public static bool IsSpecified(Edge edge) /// true if edge is a divergent architecture dependency public static bool IsDivergent(Edge edge) { - AssertOrThrow(edge.IsInImplementation(), () => new NotInSubgraphException(Implementation, edge)); + AssertOrThrow(edge.IsInReflexion(), () => new NotInSubgraphException(Implementation, edge)); return edge.State() == State.Divergent; } #endregion