MaibornWolff / metric-gardener

BSD 3-Clause "New" or "Revised" License
6 stars 0 forks source link

Bug in coupling metric: relationships can only detected for the first type in the file #363

Open mylinhdao opened 4 months ago

mylinhdao commented 4 months ago

Ex: all theses classes have a relationship to ClassX. But actually, the list of relationship contains only the relationship FirstClass -> ClassX, not SecondClass -> ClassX

using ClassXNamespace;

class FirstClass {
    ClassX classX;
}
class SecondClass {
    ClassX classX;
}