Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
nescohen committed Dec 3, 2020
2 parents 8bb32f2 + 0c54deb commit 6703bd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -19,7 +19,7 @@
<groupId>com.capitalone.dashboard</groupId>
<artifactId>core</artifactId>
<packaging>jar</packaging>
<version>3.11.1</version>
<version>3.12.1</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>Core package shared by API layer and Microservices</description>
<url>https://github.com/Hygieia/hygieia-core</url>
Expand Down
Expand Up @@ -16,7 +16,7 @@ public class WhiteSourceChangeRequest extends BaseModel {
private String projectName;
private long lastUpdated;
private String scopeName;
private long changeScopeId;
private Long changeScopeId;
private List<String> beforeChange;
private List<String> afterChange;
private String operator;
Expand Down Expand Up @@ -103,11 +103,11 @@ public void setScopeName(String scopeName) {
this.scopeName = scopeName;
}

public long getChangeScopeId() {
public Long getChangeScopeId() {
return changeScopeId;
}

public void setChangeScopeId(long changeScopeId) {
public void setChangeScopeId(Long changeScopeId) {
this.changeScopeId = changeScopeId;
}

Expand Down

0 comments on commit 6703bd9

Please sign in to comment.