Skip to content

Commit

Permalink
CLDSVCS-901 SF
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Aug 11, 2015
1 parent e3e84e2 commit f5b00af
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -178,7 +178,7 @@ protected List<String> getLaunchConfigurationNames() {
}

protected List<String> getImageNames(List<String> imageIds) {
List<String> names = new ArrayList<String>();
List<String> imageNames = new ArrayList<String>();

DescribeImagesRequest describeImagesRequest =
new DescribeImagesRequest();
Expand All @@ -189,10 +189,10 @@ protected List<String> getImageNames(List<String> imageIds) {
amazonEC2Client.describeImages(describeImagesRequest);

for (Image image : describeImagesResult.getImages()) {
names.add(image.getName());
imageNames.add(image.getName());
}

return names;
return imageNames;
}

protected String getTimestamp(String imageName) {
Expand Down

0 comments on commit f5b00af

Please sign in to comment.