Skip to content

Commit 9aab5e0

Browse files
minor refactor
1 parent f6526b1 commit 9aab5e0

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

src/main/java/com/fishercoder/common/classes/Employee.java

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,19 @@
22

33
import java.util.List;
44

5-
/**
6-
* Created by stevesun on 9/29/17.
7-
*/
85
public class Employee {
9-
// It's the unique id of each node;
10-
// unique id of this employee
6+
/**
7+
* It's the unique id of each node;
8+
* unique id of this employee
9+
*/
1110
public int id;
12-
// the importance value of this employee
11+
/**
12+
* the importance value of this employee
13+
*/
1314
public int importance;
14-
// the id of direct subordinates
15+
/**
16+
* the id of direct subordinates
17+
*/
1518
public List<Integer> subordinates;
1619

1720
public Employee(int id, int importance, List<Integer> subordinates) {

0 commit comments

Comments
 (0)