We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ffdfd7 commit 99a2088Copy full SHA for 99a2088
mse-simple-demo/C/src/main/java/com/alibabacloud/mse/demo/sql/User.java
@@ -64,16 +64,4 @@ public String toString() {
64
'}';
65
}
66
67
-
68
- public static void main(String[] args) {
69
- List<Integer> nums = new ArrayList<>();
70
- nums.add(10);
71
- nums.add(4);
72
- nums.add(12);
73
- nums.add(1);
74
- nums.sort(Comparator.comparing(Integer::intValue).reversed());
75
- for (Integer num : nums) {
76
- System.out.println(num);
77
- }
78
79
0 commit comments