File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed
main/java/com/github/shyiko/mysql/binlog
test/java/com/github/shyiko/mysql/binlog Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1515 */
1616package 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 ;
Original file line number Diff line number Diff 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" );
You can’t perform that action at this time.
0 commit comments