Skip to content

Commit bb59b64

Browse files
committed
Fix indentation errors
1 parent e5ed0bf commit bb59b64

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main/java/it/reply/orchestrator/service/deployment/providers/ImServiceImpl.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1028,13 +1028,13 @@ public boolean isActionComplete(ActionMessage deploymentMessage) {
10281028
client -> client.getVmInfo(deployment.getEndpoint(), resource.getIaasId()));
10291029

10301030
Optional<String> tmpState = vmInfo.getVmProperties()
1031-
.stream()
1032-
.filter(Objects::nonNull)
1033-
.filter(properties -> "system".equals(properties.get("class")))
1034-
.map(properties -> (String) properties.get("state")).findAny();
1031+
.stream()
1032+
.filter(Objects::nonNull)
1033+
.filter(properties -> "system".equals(properties.get("class")))
1034+
.map(properties -> (String) properties.get("state")).findAny();
10351035

10361036
String state;
1037-
if (tmpState.isPresent()){
1037+
if (tmpState.isPresent()) {
10381038
state = tmpState.get();
10391039
} else {
10401040
throw new ImClientException("Null pointer exception");

0 commit comments

Comments
 (0)