提交 08a0c403 编写于 作者: V vongosling

Polish

上级 c0e4c3fd
...@@ -21,9 +21,6 @@ import org.apache.rocketmq.client.log.ClientLogger; ...@@ -21,9 +21,6 @@ import org.apache.rocketmq.client.log.ClientLogger;
import org.apache.rocketmq.common.ServiceThread; import org.apache.rocketmq.common.ServiceThread;
import org.slf4j.Logger; import org.slf4j.Logger;
/**
* Rebalance Service
*/
public class RebalanceService extends ServiceThread { public class RebalanceService extends ServiceThread {
private static long waitInterval = private static long waitInterval =
Long.parseLong(System.getProperty( Long.parseLong(System.getProperty(
......
...@@ -19,5 +19,5 @@ package org.apache.rocketmq.client.producer; ...@@ -19,5 +19,5 @@ package org.apache.rocketmq.client.producer;
import org.apache.rocketmq.common.message.Message; import org.apache.rocketmq.common.message.Message;
public interface LocalTransactionExecuter { public interface LocalTransactionExecuter {
public LocalTransactionState executeLocalTransactionBranch(final Message msg, final Object arg); LocalTransactionState executeLocalTransactionBranch(final Message msg, final Object arg);
} }
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
package org.apache.rocketmq.client.producer; package org.apache.rocketmq.client.producer;
public interface SendCallback { public interface SendCallback {
public void onSuccess(final SendResult sendResult); void onSuccess(final SendResult sendResult);
public void onException(final Throwable e); void onException(final Throwable e);
} }
...@@ -16,20 +16,33 @@ ...@@ -16,20 +16,33 @@
*/ */
package org.apache.rocketmq.common; package org.apache.rocketmq.common;
import org.apache.rocketmq.common.annotation.ImportantField; import java.io.ByteArrayInputStream;
import org.apache.rocketmq.common.constant.LoggerName; import java.io.File;
import org.apache.rocketmq.common.help.FAQUrl; import java.io.FileInputStream;
import org.slf4j.Logger; import java.io.FileWriter;
import org.slf4j.LoggerFactory; import java.io.IOException;
import java.io.InputStream;
import java.io.*;
import java.lang.annotation.Annotation; import java.lang.annotation.Annotation;
import java.lang.reflect.Field; import java.lang.reflect.Field;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.lang.reflect.Modifier; import java.lang.reflect.Modifier;
import java.net.*; import java.net.Inet6Address;
import java.util.*; import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.concurrent.atomic.AtomicLong; import java.util.concurrent.atomic.AtomicLong;
import org.apache.rocketmq.common.annotation.ImportantField;
import org.apache.rocketmq.common.constant.LoggerName;
import org.apache.rocketmq.common.help.FAQUrl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class MixAll { public class MixAll {
private static final Logger log = LoggerFactory.getLogger(LoggerName.COMMON_LOGGER_NAME); private static final Logger log = LoggerFactory.getLogger(LoggerName.COMMON_LOGGER_NAME);
......
...@@ -19,17 +19,20 @@ package org.apache.rocketmq.remoting.common; ...@@ -19,17 +19,20 @@ package org.apache.rocketmq.remoting.common;
import io.netty.channel.Channel; import io.netty.channel.Channel;
import io.netty.channel.ChannelFuture; import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelFutureListener; import io.netty.channel.ChannelFutureListener;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException; import java.io.IOException;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.net.*; import java.net.Inet6Address;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.NetworkInterface;
import java.net.SocketAddress;
import java.nio.channels.Selector; import java.nio.channels.Selector;
import java.nio.channels.SocketChannel; import java.nio.channels.SocketChannel;
import java.nio.channels.spi.SelectorProvider; import java.nio.channels.spi.SelectorProvider;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Enumeration; import java.util.Enumeration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class RemotingUtil { public class RemotingUtil {
public static final String OS_NAME = System.getProperty("os.name"); public static final String OS_NAME = System.getProperty("os.name");
......
...@@ -122,7 +122,7 @@ ...@@ -122,7 +122,7 @@
<module name="StaticVariableName"/> <module name="StaticVariableName"/>
<module name="TypeName"/> <module name="TypeName"/>
<!--Checks that there are no import statements that use the * notation--> <!--Checks that there are no import statements that use the * notation-->
<!--<module name="AvoidStarImport"/>--> <module name="AvoidStarImport"/>
<!--whitespace--> <!--whitespace-->
<module name="GenericWhitespace"/> <module name="GenericWhitespace"/>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册