Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
teosarca committed Dec 5, 2017
1 parent 05e191e commit 3a8f0dc
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@ public ViewRowIdsOrderedSelection createSelection(final ViewId viewId, final Lis
throw new UnsupportedOperationException("not implemented");
}

@Override
public ViewRowIdsOrderedSelection createSelectionFromSelection(final ViewRowIdsOrderedSelection fromSelection, final List<DocumentQueryOrderBy> orderBys)
{
throw new UnsupportedOperationException("not implemented");
}

@Override
public ViewRowIdsOrderedSelection removeRowIdsFromSelection(final ViewRowIdsOrderedSelection selection, final DocumentIdsSelection rowIdsToRemove)
{
Expand Down Expand Up @@ -126,5 +132,4 @@ public String buildSqlWhereClause(final ViewRowIdsOrderedSelection selection, fi
{
throw new UnsupportedOperationException("not implemented");
}

}

0 comments on commit 3a8f0dc

Please sign in to comment.