Skip to content

Commit

Permalink
CAMEL-8184 Fix the CS error
Browse files Browse the repository at this point in the history
  • Loading branch information
WillemJiang committed Jan 5, 2015
1 parent e49c560 commit ad1bce1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -264,7 +264,7 @@ private ObjectMetadata determineMetadata(final Exchange exchange) {

Map<String, String> s3Headers = CastUtils.cast(exchange.getIn().getHeader(S3Constants.S3_HEADERS, Map.class));
if (s3Headers != null) {
for(Map.Entry<String, String> entry : s3Headers.entrySet()) {
for (Map.Entry<String, String> entry : s3Headers.entrySet()) {
objectMetadata.setHeader(entry.getKey(), entry.getValue());
}
}
Expand Down

0 comments on commit ad1bce1

Please sign in to comment.