Skip to content

Commit

Permalink
spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
bongsh0112 committed Dec 29, 2023
1 parent fdf0062 commit f48bc5e
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public class S3Config {

private final S3Properties s3Properties;


@Value("${cloud.aws.credentials.accessKey}")
private String accessKey;

Expand All @@ -29,8 +28,7 @@ public class S3Config {

@Bean
public AmazonS3Client amazonS3Client() {
BasicAWSCredentials awsCredentials =
new BasicAWSCredentials(accessKey, secretKey);
BasicAWSCredentials awsCredentials = new BasicAWSCredentials(accessKey, secretKey);
return (AmazonS3Client)
AmazonS3ClientBuilder.standard()
.withRegion(region)
Expand Down

0 comments on commit f48bc5e

Please sign in to comment.