Skip to content

Commit ef810db

Browse files
committed
update JavaExample
1 parent 5ee5d2a commit ef810db

File tree

2 files changed

+23
-11
lines changed

2 files changed

+23
-11
lines changed

src/com/betterzhang/learnkotlin/java/JavaExample.java

+1-11
Original file line numberDiff line numberDiff line change
@@ -177,14 +177,4 @@ int getScore2(int value) {
177177
return 2 * value;
178178
}
179179

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 numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
}

0 commit comments

Comments
 (0)