Skip to content

Commit

Permalink
Remove tabs at the beguinning of the line.
Browse files Browse the repository at this point in the history
  • Loading branch information
paconte committed Oct 6, 2020
1 parent f2976dc commit 4bf414e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/com/suse/salt/netapi/examples/GitModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public class GitModule {
private static final String HTTPS_PASS = "saltgit";

public static void main(String[] args) {
// Init the client
SaltClient client =
// the client
SaltClient client =
new SaltClient(URI.create(SALT_API_URL),
new HttpAsyncClientImpl(HttpClientUtils.defaultClient()));
Token token = client.login(USER, PASSWORD, AuthModule.PAM).toCompletableFuture().join();
Expand All @@ -48,7 +48,7 @@ public static void main(String[] args) {
// substitute above line for the below line of no user and password
// Optional.empty(), Optional.empty(), Optional.empty());

Map<String, Result<Boolean>> results =
Map<String, Result<Boolean>> results =
call.callSync(client, new MinionList(MINION_ID), tokenAuth).toCompletableFuture().join();

System.out.println("Response from minions:");
Expand Down

0 comments on commit 4bf414e

Please sign in to comment.