From e7a134ae8b62d07a29f3adf8763cf1720cd963d5 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Mon, 17 May 2010 14:08:18 +0000 Subject: [PATCH] typo --- .../ws/server/endpoint/AbstractLoggingInterceptor.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/src/main/java/org/springframework/ws/server/endpoint/AbstractLoggingInterceptor.java b/core/src/main/java/org/springframework/ws/server/endpoint/AbstractLoggingInterceptor.java index 62444d7e..b99aac4d 100644 --- a/core/src/main/java/org/springframework/ws/server/endpoint/AbstractLoggingInterceptor.java +++ b/core/src/main/java/org/springframework/ws/server/endpoint/AbstractLoggingInterceptor.java @@ -1,5 +1,5 @@ /* - * Copyright 2006 the original author or authors. + * Copyright 2005-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -24,14 +24,14 @@ import javax.xml.transform.TransformerConfigurationException; import javax.xml.transform.TransformerException; import javax.xml.transform.stream.StreamResult; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; - import org.springframework.ws.WebServiceMessage; import org.springframework.ws.context.MessageContext; import org.springframework.ws.server.EndpointInterceptor; import org.springframework.xml.transform.TransformerObjectSupport; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + /** * Abstract base class for EndpointInterceptor instances that log a part of a * WebServiceMessage. By default, both request and response messages are logged, but this behaviour can be @@ -152,7 +152,7 @@ public abstract class AbstractLoggingInterceptor extends TransformerObjectSuppor * Logs the given string message. *

* By default, this method uses a "debug" level of logging. Subclasses can override this method to change the level - * of loging used by the logger. + * of logging used by the logger. * * @param message the message */