Skip to content

Commit

Permalink
[ELY-2819] Fix the import order in OAuth2Client.java
Browse files Browse the repository at this point in the history
  • Loading branch information
luisa-ball authored Oct 4, 2024
1 parent bb6f7eb commit 881d038
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@

package org.wildfly.security.mechanism.oauth2;

import static org.wildfly.common.Assert.assertTrue;

import javax.security.auth.callback.CallbackHandler;
import javax.security.auth.callback.UnsupportedCallbackException;

import org.wildfly.common.bytes.ByteStringBuilder;
import org.wildfly.common.iteration.ByteIterator;
import org.wildfly.security.auth.callback.CredentialCallback;
Expand All @@ -27,11 +32,6 @@
import org.wildfly.security.mechanism.AuthenticationMechanismException;
import org.wildfly.security.sasl.util.StringPrep;

import javax.security.auth.callback.CallbackHandler;
import javax.security.auth.callback.UnsupportedCallbackException;

import static org.wildfly.common.Assert.assertTrue;

/**
* Implementation of the client side of the OAuth2 SASL mechanism.
*
Expand Down

0 comments on commit 881d038

Please sign in to comment.