Guest User

Untitled

a guest
Jun 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. public static <U> void fillBoxes(U u, List<Box<U>> boxes) {
  2. for (Box<U> box : boxes) {
  3. box.add(u);
  4. }
  5. }
Add Comment
Please, Sign In to add comment