Skip to content

Commit 9683434

Browse files
committed
update author in javadoc
1 parent b19a582 commit 9683434

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

src/main/java/com/alibaba/dcm/DnsCacheManipulator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* A simple lib for setting dns (in fact dns cache) programmatically.
1414
*
15-
* @author ding.lid
15+
* @author Jerry Lee (oldratlee at gmail dot com)
1616
* @see DnsCacheEntry
1717
* @see DnsCacheManipulatorException
1818
*/

src/main/java/com/alibaba/dcm/DnsCacheManipulatorException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.alibaba.dcm;
22

33
/**
4-
* @author ding.lid
4+
* @author Jerry Lee (oldratlee at gmail dot com)
55
*/
66
public class DnsCacheManipulatorException extends RuntimeException {
77
private static final long serialVersionUID = -7843069964883320844L;

src/main/java/com/alibaba/dcm/internal/InetAddressCacheUtil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* you can see the implementation of {@link InetAddress} to confirm this
2626
* (<b><i>See Also</i></b> lists key code of {@link InetAddress} related to this point).
2727
*
28-
* @author ding.lid
28+
* @author Jerry Lee (oldratlee at gmail dot com)
2929
* @see InetAddress
3030
* @see InetAddress#addressCache
3131
* @see InetAddress#cacheInitIfNeeded()
@@ -110,7 +110,7 @@ static InetAddress[] toInetAddressArray(String host, String[] ips) throws Unknow
110110
private static Pattern PATTERN_DOT = Pattern.compile("\\.");
111111

112112
static byte[] ip2ByteArray(String ip) {
113-
final String[] ipParts = PATTERN_DOT.split(ip); // FIXME check ip validation
113+
final String[] ipParts = PATTERN_DOT.split(ip);
114114

115115
byte[] address = new byte[ipParts.length];
116116
for (int i = 0; i < ipParts.length; i++) {

src/test/java/com/alibaba/dcm/DnsCacheEntryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
/**
13-
* @author ding.lid
13+
* @author Jerry Lee (oldratlee at gmail dot com)
1414
*/
1515
public class DnsCacheEntryTest {
1616
@Test

src/test/java/com/alibaba/dcm/DnsCacheManipulatorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import static org.junit.Assert.fail;
1515

1616
/**
17-
* @author ding.lid
17+
* @author Jerry Lee (oldratlee at gmail dot com)
1818
*/
1919
public class DnsCacheManipulatorTest {
2020
static final String DOMAIN1 = "www.hello1.com";

src/test/java/com/alibaba/dcm/SocketDemo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import java.net.Socket;
66

77
/**
8-
* @author ding.lid
8+
* @author Jerry Lee (oldratlee at gmail dot com)
99
*/
1010
public class SocketDemo {
1111
public static void main(String[] args) throws Exception {

src/test/java/com/alibaba/dcm/internal/InetAddressCacheUtilTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import static org.junit.Assert.fail;
88

99
/**
10-
* @author ding.lid
10+
* @author Jerry Lee (oldratlee at gmail dot com)
1111
*/
1212
public class InetAddressCacheUtilTest {
1313
@Test

0 commit comments

Comments
 (0)