Skip to content

Commit

Permalink
Change ImmutableList to List in createColumnCombination in ColumnComb…
Browse files Browse the repository at this point in the history
…inationBitset.java.
  • Loading branch information
tabergma committed Oct 24, 2014
1 parent ad79a42 commit b5dd9e0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

package de.metanome.algorithm_helper.data_structures;

import com.google.common.collect.ImmutableList;

import de.metanome.algorithm_integration.ColumnCombination;
import de.metanome.algorithm_integration.ColumnIdentifier;

Expand Down Expand Up @@ -533,7 +531,7 @@ public boolean isEmpty() {
* @return a {@link ColumnCombination}
*/
public ColumnCombination createColumnCombination(String relationName,
ImmutableList<String> columnNames) {
List<String> columnNames) {
ColumnIdentifier[] identifierList = new ColumnIdentifier[size()];
int i = 0;
for (Integer columnIndex : getSetBits()) {
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit b5dd9e0

Please sign in to comment.