Advertisement
Guest User

Untitled

a guest
May 25th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // Process employees based on status
  2. void processEmployees() {
  3. ...
  4. List<Employee> employees = findEmployees(statusList);
  5. ...
  6. }
  7.  
  8. // this finds Employees by a list of statuses
  9. List<Employee> findEmployees(List<String> statusList) {
  10. ...
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement