Skip to content

Commit

Permalink
for #1205, refactor SQLRouteResult.routeUnit's type from set to colle…
Browse files Browse the repository at this point in the history
…ction
  • Loading branch information
terrymanu committed Sep 1, 2018
1 parent c0c4a6b commit 2980694
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
import lombok.Getter;
import lombok.RequiredArgsConstructor;

import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.Set;

/**
* SQL route result.
Expand All @@ -40,7 +40,7 @@ public final class SQLRouteResult {

private final GeneratedKey generatedKey;

private final Set<RouteUnit> routeUnits = new LinkedHashSet<>();
private final Collection<RouteUnit> routeUnits = new LinkedHashSet<>();

public SQLRouteResult(final SQLStatement sqlStatement) {
this(sqlStatement, null);
Expand Down

0 comments on commit 2980694

Please sign in to comment.