mirror of https://github.com/apache/activemq.git
fixed stange compile error when using m2
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@399262 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2faad432f3
commit
15db51ea74
|
@ -16,16 +16,19 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.activemq.transport.xstream;
|
package org.apache.activemq.transport.xstream;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import org.apache.activeio.command.WireFormat;
|
import org.apache.activeio.command.WireFormat;
|
||||||
import org.apache.activemq.command.Command;
|
import org.apache.activemq.command.Command;
|
||||||
import org.apache.activemq.command.MessageTest;
|
import org.apache.activemq.command.MessageTest;
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @version $Revision$
|
* @version $Revision$
|
||||||
*/
|
*/
|
||||||
public class XStreamWireFormatTest extends MessageTest {
|
public class XStreamWireFormatTest extends MessageTest {
|
||||||
|
private static final Log log = LogFactory.getLog(XStreamWireFormatTest.class);
|
||||||
|
|
||||||
public void assertBeanMarshalls(Object original) throws IOException {
|
public void assertBeanMarshalls(Object original) throws IOException {
|
||||||
super.assertBeanMarshalls(original);
|
super.assertBeanMarshalls(original);
|
||||||
|
|
Loading…
Reference in New Issue