Skip to content

Commit 0e5e8e1

Browse files
author
Henry Cai
committed
Make UUIDSet and Interval class's constructor public
1 parent 62226ac commit 0e5e8e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public static final class UUIDSet {
180180
private String uuid;
181181
private List<Interval> intervals;
182182

183-
UUIDSet(String uuid, List<Interval> intervals) {
183+
public UUIDSet(String uuid, List<Interval> intervals) {
184184
this.uuid = uuid;
185185
this.intervals = intervals;
186186
if (intervals.size() > 1) {
@@ -349,7 +349,7 @@ public static final class Interval implements Comparable<Interval> {
349349
private long start;
350350
private long end;
351351

352-
Interval(long start, long end) {
352+
public Interval(long start, long end) {
353353
this.start = start;
354354
this.end = end;
355355
}

0 commit comments

Comments
 (0)