File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
src/main/java/io/reqover/core/model/coverage Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55
66archivesBaseName = ' reqover-java'
77group= ' io.reqover'
8- version= ' 0.1.0 '
8+ version= ' 0.1.1 '
99
1010repositories {
1111 mavenCentral()
Original file line number Diff line number Diff line change 44import java .util .UUID ;
55
66public class CoverageInfo {
7- private String id = UUID .randomUUID ().toString ();
7+ private String uuid = UUID .randomUUID ().toString ();
88 private UrlPath urlPath ;
99 private String method ;
1010 private String statusCode ;
@@ -16,12 +16,12 @@ public CoverageInfo() {
1616
1717 }
1818
19- public String getId () {
20- return id ;
19+ public String getUuid () {
20+ return uuid ;
2121 }
2222
23- public void setId (String id ) {
24- this .id = id ;
23+ public void setUuid (String uuid ) {
24+ this .uuid = uuid ;
2525 }
2626
2727 public UrlPath getUrlPath () {
You can’t perform that action at this time.
0 commit comments