removing unused imports and code that is commented out; looks like was add by accident
This commit is contained in:
parent
457853aa28
commit
2c349b757f
2 changed files with 0 additions and 58 deletions
|
@ -16,17 +16,9 @@
|
|||
*/
|
||||
package org.keycloak.subsystem.logging;
|
||||
|
||||
import java.util.List;
|
||||
import org.jboss.logging.BasicLogger;
|
||||
import org.jboss.logging.annotations.LogMessage;
|
||||
import org.jboss.logging.Logger;
|
||||
import org.jboss.logging.annotations.Message;
|
||||
import org.jboss.logging.annotations.MessageLogger;
|
||||
import org.jboss.vfs.VirtualFile;
|
||||
|
||||
import static org.jboss.logging.Logger.Level.ERROR;
|
||||
import static org.jboss.logging.Logger.Level.INFO;
|
||||
import static org.jboss.logging.Logger.Level.WARN;
|
||||
|
||||
/**
|
||||
* This interface to be fleshed out later when error messages are fully externalized.
|
||||
|
@ -41,27 +33,4 @@ public interface KeycloakLogger extends BasicLogger {
|
|||
*/
|
||||
KeycloakLogger ROOT_LOGGER = Logger.getMessageLogger(KeycloakLogger.class, "org.jboss.keycloak");
|
||||
|
||||
/* @LogMessage(level = ERROR)
|
||||
@Message(id = 12600, value = "Could not load JSF managed bean class: %s")
|
||||
void managedBeanLoadFail(String managedBean);
|
||||
|
||||
@LogMessage(level = ERROR)
|
||||
@Message(id = 12601, value = "JSF managed bean class %s has no default constructor")
|
||||
void managedBeanNoDefaultConstructor(String managedBean);
|
||||
|
||||
@LogMessage(level = ERROR)
|
||||
@Message(id = 12602, value = "Failed to parse %s, managed beans defined in this file will not be available")
|
||||
void managedBeansConfigParseFailed(VirtualFile facesConfig);
|
||||
|
||||
@LogMessage(level = WARN)
|
||||
@Message(id = 12603, value = "Unknown JSF version '%s'. Default version '%s' will be used instead.")
|
||||
void unknownJSFVersion(String version, String defaultVersion);
|
||||
|
||||
@LogMessage(level = WARN)
|
||||
@Message(id = 12604, value = "JSF version slot '%s' is missing from module %s")
|
||||
void missingJSFModule(String version, String module);
|
||||
|
||||
@LogMessage(level = INFO)
|
||||
@Message(id = 12605, value = "Activated the following JSF Implementations: %s")
|
||||
void activatedJSFImplementations(List target); */
|
||||
}
|
||||
|
|
|
@ -16,11 +16,6 @@
|
|||
*/
|
||||
package org.keycloak.subsystem.logging;
|
||||
|
||||
import org.jboss.as.server.deployment.DeploymentUnitProcessingException;
|
||||
import org.jboss.jandex.AnnotationTarget;
|
||||
import org.jboss.jandex.DotName;
|
||||
import org.jboss.logging.annotations.Cause;
|
||||
import org.jboss.logging.annotations.Message;
|
||||
import org.jboss.logging.annotations.MessageBundle;
|
||||
import org.jboss.logging.Messages;
|
||||
|
||||
|
@ -36,26 +31,4 @@ public interface KeycloakMessages {
|
|||
* The messages
|
||||
*/
|
||||
KeycloakMessages MESSAGES = Messages.getBundle(KeycloakMessages.class);
|
||||
/*
|
||||
@Message(id = 12650, value = "Failed to load annotated class: %s")
|
||||
String classLoadingFailed(DotName clazz);
|
||||
|
||||
@Message(id = 12651, value = "Annotation %s in class %s is only allowed on classes")
|
||||
String invalidAnnotationLocation(Object annotation, AnnotationTarget classInfo);
|
||||
|
||||
@Message(id = 12652, value = "Instance creation failed")
|
||||
RuntimeException instanceCreationFailed(@Cause Throwable t);
|
||||
|
||||
@Message(id = 12653, value = "Instance destruction failed")
|
||||
RuntimeException instanceDestructionFailed(@Cause Throwable t);
|
||||
|
||||
@Message(id = 12654, value = "Thread local injection container not set")
|
||||
IllegalStateException noThreadLocalInjectionContainer();
|
||||
|
||||
@Message(id = 12655, value = "@ManagedBean is only allowed at class level %s")
|
||||
String invalidManagedBeanAnnotation(AnnotationTarget target);
|
||||
|
||||
@Message(id = 12656, value = "Default JSF implementation slot '%s' is invalid")
|
||||
DeploymentUnitProcessingException invalidDefaultJSFImpl(String defaultJsfVersion);
|
||||
*/
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue