Skip to content

Commit 2bb6b63

Browse files
author
s.pirohov
committed
v0.1.1
1 parent 9acf8b3 commit 2bb6b63

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55

66
archivesBaseName = 'reqover-java'
77
group='io.reqover'
8-
version='0.1.0'
8+
version='0.1.1'
99

1010
repositories {
1111
mavenCentral()

src/main/java/io/reqover/core/model/coverage/CoverageInfo.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import java.util.UUID;
55

66
public 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() {

0 commit comments

Comments
 (0)