GUACAMOLE-1239: Fix RADIUS extension build (ConfigurationService should have been removed).

This commit is contained in:
Michael Jumper
2025-01-01 21:12:42 -08:00
parent 333b73c3dd
commit 88487bc536

View File

@@ -23,8 +23,6 @@ import com.google.inject.Inject;
import org.apache.guacamole.net.auth.AbstractAuthenticatedUser;
import org.apache.guacamole.net.auth.AuthenticationProvider;
import org.apache.guacamole.net.auth.Credentials;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* An RADIUS-specific implementation of AuthenticatedUser, associating a
@@ -32,11 +30,6 @@ import org.slf4j.LoggerFactory;
*/
public class AuthenticatedUser extends AbstractAuthenticatedUser {
/**
* Logger for this class.
*/
private static final Logger LOGGER = LoggerFactory.getLogger(AuthenticatedUser.class);
/**
* Reference to the authentication provider associated with this
* authenticated user.
@@ -44,12 +37,6 @@ public class AuthenticatedUser extends AbstractAuthenticatedUser {
@Inject
private AuthenticationProvider authProvider;
/**
* A reference to the configuration service associated with this module.
*/
@Inject
private ConfigurationService confService;
/**
* The credentials provided when this user was authenticated.
*/