Skip to content

Commit

Permalink
minor formatting change
Browse files Browse the repository at this point in the history
storage error on disposal
#578
  • Loading branch information
metas-ts committed Sep 11, 2017
1 parent a7a4601 commit f5f5da9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ protected final List<I_M_HU> getSelectedHUs(@NonNull final Select select)
final Set<Integer> huIds = getSelectedHUIds(Select.ALL);

return Services.get(IHandlingUnitsDAO.class)
.createHUQueryBuilder().addOnlyHUIds(huIds)
.createHUQueryBuilder()
.addOnlyHUIds(huIds)
.setOnlyTopLevelHUs(select == Select.ONLY_TOPLEVEL)
.createQuery()
.list(I_M_HU.class);
Expand Down

0 comments on commit f5f5da9

Please sign in to comment.