Skip to content

Commit

Permalink
minor: rename var
Browse files Browse the repository at this point in the history
  • Loading branch information
teosarca committed Jun 2, 2017
1 parent 9185a1f commit ed90e76
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ public class HUEditorViewBuffer_HighVolume implements HUEditorViewBuffer
{
this.huEditorRepo = huEditorRepo;

final SqlViewBinding entityBinding = huEditorRepo.getSqlViewBinding();
viewSelectionFactory = SqlViewRowIdsOrderedSelectionFactory.of(entityBinding);
sqlSelectHUIdsByPage = entityBinding.getSqlSelectByPage();
final SqlViewBinding viewBinding = huEditorRepo.getSqlViewBinding();
viewSelectionFactory = SqlViewRowIdsOrderedSelectionFactory.of(viewBinding);
sqlSelectHUIdsByPage = viewBinding.getSqlSelectByPage();

final ViewEvaluationCtx viewEvalCtx = ViewEvaluationCtx.of(Env.getCtx());

final ViewRowIdsOrderedSelection defaultSelection = viewSelectionFactory.createOrderedSelection(viewEvalCtx, windowId, filters, entityBinding.getDefaultOrderBys());
final ViewRowIdsOrderedSelection defaultSelection = viewSelectionFactory.createOrderedSelection(viewEvalCtx, windowId, filters, viewBinding.getDefaultOrderBys());
defaultSelectionRef = new AtomicReference<>(defaultSelection);

}
Expand Down

0 comments on commit ed90e76

Please sign in to comment.