Skip to content

Commit

Permalink
Maven formatting fixes after last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
absurdfarce committed Nov 15, 2022
1 parent 0351c4f commit f9ced72
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@
import com.datastax.oss.driver.api.core.data.GettableById;
import com.datastax.oss.driver.api.core.data.GettableByName;
import com.datastax.oss.driver.internal.core.util.Strings;
import com.datastax.oss.driver.shaded.guava.common.collect.ArrayListMultimap;
import com.datastax.oss.driver.shaded.guava.common.collect.ImmutableListMultimap;
import com.datastax.oss.driver.shaded.guava.common.collect.LinkedListMultimap;
import com.datastax.oss.driver.shaded.guava.common.collect.ListMultimap;
import java.util.Iterator;
import java.util.List;
Expand All @@ -44,8 +42,10 @@ public class IdentifierIndex {

public IdentifierIndex(List<CqlIdentifier> ids) {
ImmutableListMultimap.Builder<CqlIdentifier, Integer> byId = ImmutableListMultimap.builder();
ImmutableListMultimap.Builder<String, Integer> byCaseSensitiveName = ImmutableListMultimap.builder();
ImmutableListMultimap.Builder<String, Integer> byCaseInsensitiveName = ImmutableListMultimap.builder();
ImmutableListMultimap.Builder<String, Integer> byCaseSensitiveName =
ImmutableListMultimap.builder();
ImmutableListMultimap.Builder<String, Integer> byCaseInsensitiveName =
ImmutableListMultimap.builder();

int i = 0;
for (CqlIdentifier id : ids) {
Expand Down

0 comments on commit f9ced72

Please sign in to comment.