Skip to content

Commit da142f1

Browse files
committed
Fixed checkstyle violations
1 parent 3f30768 commit da142f1

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

src/main/java/com/github/shyiko/mysql/binlog/GtidSet.java

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,15 @@
1515
*/
1616
package com.github.shyiko.mysql.binlog;
1717

18-
import java.util.*;
18+
import java.util.ArrayList;
19+
import java.util.Collection;
20+
import java.util.LinkedHashMap;
21+
import java.util.List;
22+
import java.util.Map;
1923

2024
/**
21-
* GTID set as described in <a href="https://dev.mysql.com/doc/refman/5.6/en/replication-gtids-concepts.html">GTID Concepts</a>
22-
* of MySQL 5.6 Reference Manual.
25+
* GTID set as described in <a href="https://dev.mysql.com/doc/refman/5.6/en/replication-gtids-concepts.html">GTID
26+
* Concepts</a> of MySQL 5.6 Reference Manual.
2327
*
2428
* <pre>
2529
* gtid_set: uuid_set[,uuid_set]...
@@ -154,6 +158,9 @@ private String join(Collection o, String delimiter) {
154158
return sb.substring(0, sb.length() - delimiter.length());
155159
}
156160

161+
/**
162+
* @see GtidSet
163+
*/
157164
public static class UUIDSet {
158165

159166
private String uuid;
@@ -173,6 +180,9 @@ public Collection<Interval> getIntervals() {
173180
}
174181
}
175182

183+
/**
184+
* @see GtidSet
185+
*/
176186
public static class Interval implements Comparable<Interval> {
177187

178188
private long start;

src/test/java/com/github/shyiko/mysql/binlog/GtidSetTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ public void testAdd() throws Exception {
3737
"00000000-0000-0000-0000-000000000000:0-1:2-6:7-8,00000000-0000-0000-0000-000000000001:9-10");
3838
}
3939

40-
4140
@Test
4241
public void testJoin() throws Exception {
4342
GtidSet gtidSet = new GtidSet("00000000-0000-0000-0000-000000000000:3-5:6-7");

0 commit comments

Comments
 (0)