Attempted to correct Travis build error

This commit is contained in:
Randall Hauch 2016-01-25 13:50:17 -06:00
parent 5e4c428285
commit 772977f391

View File

@ -6,7 +6,6 @@
package io.debezium.relational;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
@ -86,7 +85,7 @@ public int size() {
public Set<TableId> drainChanges() {
return lock.write(() -> {
if (changes.isEmpty()) return Collections.<TableId>emptySet();
// if (changes.isEmpty()) return Collections.<TableId>emptySet();
Set<TableId> result = new HashSet<>(changes);
changes.clear();
return result;