Skip to content

Commit

Permalink
refactor: Change visibility of constructor for testability
Browse files Browse the repository at this point in the history
Signed-off-by: Oleg Kopysov <o.kopysov@samsung.com>
  • Loading branch information
o-kopysov committed Mar 19, 2024
1 parent 4e0b8cf commit 8487616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/lpvs/service/LPVSLicenseService.java
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ public static class Conflict<License1, License2> {
* @param l1 The first license.
* @param l2 The second license.
*/
Conflict(License1 l1, License2 l2) {
public Conflict(License1 l1, License2 l2) {
this.l1 = l1;
this.l2 = l2;
}
Expand Down

0 comments on commit 8487616

Please sign in to comment.