Skip to content

Commit 4e5786e

Browse files
committed
Removing print statement
1 parent accc26b commit 4e5786e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

core/regions/src/test/java/software/amazon/awssdk/regions/PartitionServiceMetadataTest.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,7 @@ public class PartitionServiceMetadataTest {
5656

5757
@Test
5858
public void endpointFor_ReturnsEndpoint_ForAllRegionalizedServices_When_AwsPartition() {
59-
AWS_PARTITION_REGIONALIZED_SERVICES.forEach(s -> {
60-
System.out.println(s);
61-
ServiceMetadata.of(s).endpointFor(Region.US_EAST_1);
62-
});
59+
AWS_PARTITION_REGIONALIZED_SERVICES.forEach(s -> ServiceMetadata.of(s).endpointFor(Region.US_EAST_1));
6360
}
6461

6562
@Test

0 commit comments

Comments
 (0)