提交 d2a30063 编写于 作者: T terrymanu

for checkstyle

上级 7c8f8ff4
......@@ -44,7 +44,7 @@ public interface ResultSetMerger {
* @return data value
* @throws SQLException SQL Exception
*/
Object getValue(final int columnIndex, final Class<?> type) throws SQLException;
Object getValue(int columnIndex, Class<?> type) throws SQLException;
/**
* Get data value.
......@@ -54,7 +54,7 @@ public interface ResultSetMerger {
* @return data value
* @throws SQLException SQL Exception
*/
Object getValue(final String columnLabel, final Class<?> type) throws SQLException;
Object getValue(String columnLabel, Class<?> type) throws SQLException;
/**
* Get calendar value.
......@@ -65,7 +65,7 @@ public interface ResultSetMerger {
* @return calendar value
* @throws SQLException SQL Exception
*/
Object getCalendarValue(final int columnIndex, final Class<?> type, final Calendar calendar) throws SQLException;
Object getCalendarValue(int columnIndex, Class<?> type, Calendar calendar) throws SQLException;
/**
* Get calendar value.
......@@ -76,7 +76,7 @@ public interface ResultSetMerger {
* @return calendar value
* @throws SQLException SQL Exception
*/
Object getCalendarValue(final String columnLabel, final Class<?> type, final Calendar calendar) throws SQLException;
Object getCalendarValue(String columnLabel, Class<?> type, Calendar calendar) throws SQLException;
/**
* Get InputStream.
......@@ -86,7 +86,7 @@ public interface ResultSetMerger {
* @return InputStream
* @throws SQLException SQL Exception
*/
InputStream getInputStream(final int columnIndex, final String type) throws SQLException;
InputStream getInputStream(int columnIndex, String type) throws SQLException;
/**
* Get InputStream.
......@@ -96,7 +96,7 @@ public interface ResultSetMerger {
* @return InputStream
* @throws SQLException SQL Exception
*/
InputStream getInputStream(final String columnLabel, final String type) throws SQLException;
InputStream getInputStream(String columnLabel, String type) throws SQLException;
/**
* Adjust ResultSet is null or not.
......
......@@ -14,5 +14,5 @@ public abstract class AbstractMySQLReceivedPacket extends AbstractMySQLPacket {
*
* @return instance of received packet
*/
public abstract AbstractMySQLReceivedPacket read(final MySQLPacketPayload mysqlPacketPayload);
public abstract AbstractMySQLReceivedPacket read(MySQLPacketPayload mysqlPacketPayload);
}
......@@ -12,5 +12,5 @@ public abstract class AbstractMySQLSentPacket extends AbstractMySQLPacket {
*
* @param mysqlPacketPayload packet payload to be write
*/
public abstract void write(final MySQLPacketPayload mysqlPacketPayload);
public abstract void write(MySQLPacketPayload mysqlPacketPayload);
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册