// "Replace with Comparator.comparingInt" "true" import java.util.*; public class Main { static class Data { short s; byte b; char c; int i; long l; double d; } void sort(List<Data> data) { data.sort((d1, d2) -> Byte.comp<caret>are(d1.b, d2.b)); } }