Skip to content

Commit

Permalink
Fix minor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
juileetikekar committed Nov 8, 2024
1 parent cebbb8c commit a5a3814
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,14 +243,11 @@ public List<IAssetAdministrationShell> GetAllAssetAdministrationShells(List<ISpe
}
}

if (aasList.Count != 0)
{
output = aasList;
}
else
if (aasList.Count == 0)
{
_logger.LogInformation($"No AAS with requested assetId found.");
}
output = aasList;
}
}

Expand Down

0 comments on commit a5a3814

Please sign in to comment.