Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.

Commit f23cbb9

Browse files
committed
fix issue
#645
1 parent 4cfe154 commit f23cbb9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/com/hack23/sonar/cloudformation/reports/checkov/CheckovPassedCheck.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public final class CheckovPassedCheck {
7070
private String callerFilePath;
7171

7272
/** The caller file line range. */
73-
private String callerFileLineRange;
73+
private List<Integer> callerFileLineRange;
7474

7575
/** The fixed definition. */
7676
private String fixedDefinition;
@@ -381,7 +381,7 @@ public void setCallerFilePath(final String callerFilePath) {
381381
* @return the caller file line range
382382
*/
383383
@JsonProperty("caller_file_line_range")
384-
public String getCallerFileLineRange() {
384+
public List<Integer> getCallerFileLineRange() {
385385
return callerFileLineRange;
386386
}
387387

@@ -390,7 +390,7 @@ public String getCallerFileLineRange() {
390390
*
391391
* @param callerFileLineRange the new caller file line range
392392
*/
393-
public void setCallerFileLineRange(final String callerFileLineRange) {
393+
public void setCallerFileLineRange(final List<Integer> callerFileLineRange) {
394394
this.callerFileLineRange = callerFileLineRange;
395395
}
396396

0 commit comments

Comments
 (0)