Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
eggtower committed Nov 28, 2020
1 parent 699f4f6 commit 8596ce4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/files/AvoidCyclicDependentModularizationCheck.java
Expand Up @@ -16,7 +16,7 @@ class A {

}

class B {// Noncompliant {{Class has Cyclic Dependent}}
class B {// Noncompliant {{Class B has Cyclic Dependent with class A}}

B(){
A a = new A();
Expand All @@ -30,7 +30,7 @@ class C{
}
}

class D{// Noncompliant {{Class has Cyclic Dependent}}
class D{// Noncompliant {{Class D has Cyclic Dependent with class C}}
D(){

}
Expand Down

0 comments on commit 8596ce4

Please sign in to comment.