We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62226ac commit 0e5e8e1Copy full SHA for 0e5e8e1
src/main/java/com/github/shyiko/mysql/binlog/GtidSet.java
@@ -180,7 +180,7 @@ public static final class UUIDSet {
180
private String uuid;
181
private List<Interval> intervals;
182
183
- UUIDSet(String uuid, List<Interval> intervals) {
+ public UUIDSet(String uuid, List<Interval> intervals) {
184
this.uuid = uuid;
185
this.intervals = intervals;
186
if (intervals.size() > 1) {
@@ -349,7 +349,7 @@ public static final class Interval implements Comparable<Interval> {
349
private long start;
350
private long end;
351
352
- Interval(long start, long end) {
+ public Interval(long start, long end) {
353
this.start = start;
354
this.end = end;
355
}
0 commit comments