Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Norberg committed May 2, 2017
1 parent 3aa5dbf commit dd99f8e
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
import java.io.IOException;
import java.net.ProtocolException;
import java.nio.charset.StandardCharsets;
import java.text.MessageFormat;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
Expand Down Expand Up @@ -257,8 +256,8 @@ private boolean isValidServiceAccountKeySecret(WorkflowInstance workflowInstance

final boolean keysExist;
try {
keysExist = serviceAccountKeyManager.keyExists(serviceAccount, jsonKey.getName()) &&
serviceAccountKeyManager.keyExists(serviceAccount, p12Key.getName());
keysExist = serviceAccountKeyManager.keyExists(serviceAccount, jsonKey.getName())
&& serviceAccountKeyManager.keyExists(serviceAccount, p12Key.getName());
} catch (IOException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit dd99f8e

Please sign in to comment.