Skip to content

Commit

Permalink
PARQUET-116: Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Yash Datta authored and Yash Datta committed Feb 4, 2015
1 parent d7b7159 commit 51952f8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,4 @@ public <T extends Comparable<T>, U extends UserDefinedPredicate<T>> FilterPredic
public <T extends Comparable<T>, U extends UserDefinedPredicate<T>> FilterPredicate visit(LogicalNotUserDefined<T, U> udp) {
return udp;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ public Column<T> getColumn() {
return column;
}

public Class<U> getUserDefinedPredicateClass(){
public Class<U> getUserDefinedPredicateClass() {
return udpClass;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package parquet.filter2.statisticslevel;

import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
Expand Down Expand Up @@ -241,4 +240,5 @@ public <T extends Comparable<T>, U extends UserDefinedPredicate<T>> Boolean visi
public <T extends Comparable<T>, U extends UserDefinedPredicate<T>> Boolean visit(LogicalNotUserDefined<T, U> lnud) {
return visit(lnud.getUserDefined(), true);
}

}

0 comments on commit 51952f8

Please sign in to comment.