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 2, 2015
1 parent 9a63611 commit 40d394a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ public int hashCode() {

// Represents the inverse of a UserDefined. It is equivalent to not(userDefined), without the use
// of the not() operator
public static final class LogicalNotUserDefined <T extends Comparable<T>, U extends UserDefinedPredicate<T> > implements FilterPredicate, Serializable {
public static final class LogicalNotUserDefined <T extends Comparable<T>, U extends UserDefinedPredicate<T>> implements FilterPredicate, Serializable {
private final UserDefined<T, U> udp;
private final String toString;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
// TODO: consider avoiding autoboxing and adding the specialized methods for each type
// TODO: downside is that's fairly unwieldy for users
public abstract class UserDefinedPredicate<T extends Comparable<T>> {

/**
* A udp must have a default constructor.
* The udp passed to {@link FilterApi} will not be serialized along with its state.
Expand Down

0 comments on commit 40d394a

Please sign in to comment.