Snippets

Vijay Kumar bejkRx: Untitled snippet

Created by Vijay Kumar

public class CustomFileListCombiner implements BinaryOperator<List<FileReadDTO>> {

	@Override
	public List<FileReadDTO> apply(List<FileReadDTO> t, List<FileReadDTO> u) {
		List<FileReadDTO> newList = new ArrayList<>();
		newList.addAll(t);
		newList.addAll(u);
		return newList;
	}

}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.