File tree 2 files changed +23
-11
lines changed
src/com/betterzhang/learnkotlin/java
2 files changed +23
-11
lines changed Original file line number Diff line number Diff line change @@ -177,14 +177,4 @@ int getScore2(int value) {
177
177
return 2 * value ;
178
178
}
179
179
180
- }
181
-
182
- class Util {
183
- private Util () {}
184
- public static int getScore (int value ) {
185
- return 2 * value ;
186
- }
187
- public static int triple (int value ) {
188
- return 3 * value ;
189
- }
190
- }
180
+ }
Original file line number Diff line number Diff line change
1
+ package com .betterzhang .learnkotlin .java ;
2
+
3
+ /**
4
+ * Created by IntelliJ IDEA.
5
+ * Author : Andrew Zhang
6
+
7
+ * Time : 2017/06/28 上午 10:37
8
+ * Desc : description
9
+ */
10
+ public class Util {
11
+
12
+ private Util () {}
13
+
14
+ public static int getScore (int value ) {
15
+ return 2 * value ;
16
+ }
17
+
18
+ public static int triple (int value ) {
19
+ return 3 * value ;
20
+ }
21
+
22
+ }
You can’t perform that action at this time.
0 commit comments