Skip to content

Commit

Permalink
adjust DTO violation thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
ole-ve committed Dec 17, 2024
1 parent 897ace8 commit cb76b88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ public String getModulePackage() {

@Override
protected int dtoAsAnnotatedRecordThreshold() {
return 1;
return 2;
}

@Override
protected int dtoNameEndingThreshold() {
return 2;
return 4;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ public String getModulePackage() {

@Override
protected int dtoAsAnnotatedRecordThreshold() {
return 2;
return 6;
}

@Override
protected int dtoNameEndingThreshold() {
return 6;
return 7;
}
}

0 comments on commit cb76b88

Please sign in to comment.