Skip to content

Commit

Permalink
Merge pull request #31 from anthunt/anthunt/enhancement-need-to-outpu…
Browse files Browse the repository at this point in the history
…t-26

fix bug
  • Loading branch information
anthunt authored Dec 12, 2022
2 parents 38ad0ce + 6a7eccf commit 0de00cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/anthunt/aws/exporter/AWSExporter.java
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ private void makeAutoScaling() {
this.xssfHelper.setCell(row, autoScalingGroup.healthCheckGracePeriod().toString());
this.xssfHelper.setRightThinCell(row, this.getAllTagDescriptionValue(autoScalingGroup.tags()));

if(instanceIdx > 0) {
if(autoScalingGroup.instances().size() > 0) {
row = this.xssfHelper.createRow(this.autoScalingSheet, 1);
this.xssfHelper.setSubHeadLeftThinCell(row, "Instances");
this.xssfHelper.setSubHeadCell(row, "");
Expand Down

0 comments on commit 0de00cf

Please sign in to comment.