Skip to content

Commit

Permalink
Merge pull request #6 from axonivy/alert-autofix-1
Browse files Browse the repository at this point in the history
Fix code scanning alert no. 1: Implicit narrowing conversion in compound assignment
  • Loading branch information
alexsuter authored Dec 20, 2024
2 parents 3653cdb + 610b797 commit f1b0e27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch/ivy/bb/DataService.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public List<DataItem> items() {
public List<AnimatedDataItem> animatedItems() {
List<AnimatedDataItem> result = new ArrayList<AnimatedDataItem>();

var open = 100;
long open = 100;
var close = 250;

for (var i = 1; i <365; i++) {
Expand Down

0 comments on commit f1b0e27

Please sign in to comment.