Skip to content

Commit 48c4073

Browse files
committed
Change id from Long to Integer
1 parent 86aa904 commit 48c4073

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/checkmarx/ast/predicate/CustomState.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
@JsonInclude(JsonInclude.Include.NON_NULL)
1616
@JsonIgnoreProperties(ignoreUnknown = true)
1717
public class CustomState {
18-
Long id;
18+
Integer id;
1919
String name;
2020
String type;
2121

22-
public CustomState(@JsonProperty("id") Long id,
22+
public CustomState(@JsonProperty("id") Integer id,
2323
@JsonProperty("name") String name,
2424
@JsonProperty("type") String type) {
2525
this.id = id;

0 commit comments

Comments
 (0)