Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ public static class Builder {
}

/** Add a map entry to the existing {@link Builder} mapping. */
void add(SqlTypeName fromType, Set<SqlTypeName> toTypes) {
void add(SqlTypeName toType, Set<SqlTypeName> fromTypes) {
try {
map.put(fromType, sets.get(toTypes));
map.put(toType, sets.get(fromTypes));
} catch (UncheckedExecutionException | ExecutionException e) {
throw Util.throwAsRuntime("populating SqlTypeAssignmentRules", Util.causeOrSelf(e));
}
Expand Down