Skip to content

Commit 7db9644

Browse files
marceljkGokceGK
andauthored
Apply suggestions from code review
Co-authored-by: Gökce Gök Klingel <161626272+GokceGK@users.noreply.github.com>
1 parent 999cb0e commit 7db9644

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/sfs/src/main/java/cloud/stackit/sdk/sfs/examples/SfsExample.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public static void main(String[] args) throws IOException {
122122
return;
123123
}
124124

125-
System.out.println("Waiting for resource pool create to complete ...");
125+
System.out.println("Waiting for creation of resource pool to complete ...");
126126
TimeUnit.SECONDS.sleep(5);
127127
}
128128
System.out.println("Creation of resource pool finished");
@@ -138,7 +138,7 @@ public static void main(String[] args) throws IOException {
138138
+ getResourcePoolResponse.getResourcePool().getAvailabilityZone());
139139
Objects.requireNonNull(getResourcePoolResponse.getResourcePool().getPerformanceClass());
140140
System.out.println(
141-
"* Performance class: "
141+
"* Performance Class: "
142142
+ getResourcePoolResponse
143143
.getResourcePool()
144144
.getPerformanceClass()
@@ -558,7 +558,7 @@ public static void main(String[] args) throws IOException {
558558
*/
559559
/* delete the created share */
560560
System.out.println(
561-
"\nTrigger deletion share with ID: " + createShareResponse.getShare().getId());
561+
"\nTrigger deletion of share with ID: " + createShareResponse.getShare().getId());
562562
sfsApi.deleteShare(
563563
projectId,
564564
REGION,
@@ -597,7 +597,7 @@ public static void main(String[] args) throws IOException {
597597

598598
/* delete the created resource pool */
599599
System.out.println(
600-
"\nTrigger deletion of resource pool with ID " + createdResourcePoolId);
600+
"\nTrigger deletion of resource pool with ID: " + createdResourcePoolId);
601601
sfsApi.deleteResourcePool(projectId, REGION, createdResourcePoolId);
602602

603603
/* wait for the deletion to complete */

0 commit comments

Comments
 (0)