Skip to content

Commit 82af3a4

Browse files
rename package
1 parent 05dec76 commit 82af3a4

File tree

620 files changed

+1133
-999
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

620 files changed

+1133
-999
lines changed

src/main/java/com/stevesun/common/classes/Interval.java renamed to src/main/java/com/fishercoder/common/classes/Interval.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.stevesun.common.classes;
1+
package com.fishercoder.common.classes;
22

33
/**This is a class used by one OJ problem: MeetingRooms*/
44
public class Interval implements Comparable<Interval> {

src/main/java/com/stevesun/common/classes/ListNode.java renamed to src/main/java/com/fishercoder/common/classes/ListNode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.stevesun.common.classes;
1+
package com.fishercoder.common.classes;
22

3-
import com.stevesun.common.utils.CommonUtils;
3+
import com.fishercoder.common.utils.CommonUtils;
44

55
import java.util.List;
66

src/main/java/com/stevesun/common/classes/NestedInteger.java renamed to src/main/java/com/fishercoder/common/classes/NestedInteger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.stevesun.common.classes;
1+
package com.fishercoder.common.classes;
22

33
import java.util.ArrayList;
44
import java.util.List;

src/main/java/com/stevesun/common/classes/Point.java renamed to src/main/java/com/fishercoder/common/classes/Point.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
package com.stevesun.common.classes;
1+
package com.fishercoder.common.classes;
22

33
/**
4-
* Created by stevesun on 12/31/16.
4+
* Created by fishercoder on 12/31/16.
55
*/
66
public class Point {
77
public int x;

src/main/java/com/stevesun/common/classes/Reader4.java renamed to src/main/java/com/fishercoder/common/classes/Reader4.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.stevesun.common.classes;
1+
package com.fishercoder.common.classes;
22

33
public class Reader4 {
44
public int read4(char[] buf){

src/main/java/com/stevesun/common/classes/TreeLinkNode.java renamed to src/main/java/com/fishercoder/common/classes/TreeLinkNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.stevesun.common.classes;
1+
package com.fishercoder.common.classes;
22

33
/**
44
* Created by fishercoder1534 on 10/5/16.

src/main/java/com/stevesun/common/classes/TreeNode.java renamed to src/main/java/com/fishercoder/common/classes/TreeNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.stevesun.common.classes;
1+
package com.fishercoder.common.classes;
22

33
public class TreeNode {
44
public int val;

src/main/java/com/stevesun/common/classes/UndirectedGraphNode.java renamed to src/main/java/com/fishercoder/common/classes/UndirectedGraphNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.stevesun.common.classes;
1+
package com.fishercoder.common.classes;
22

33
import java.util.ArrayList;
44
import java.util.List;

src/main/java/com/stevesun/common/utils/BTreePrinter.java renamed to src/main/java/com/fishercoder/common/utils/BTreePrinter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
*
33
*/
4-
package com.stevesun.common.utils;
4+
package com.fishercoder.common.utils;
55

66
import java.util.ArrayList;
77
import java.util.Collections;

src/main/java/com/stevesun/common/utils/CommonUtils.java renamed to src/main/java/com/fishercoder/common/utils/CommonUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.stevesun.common.utils;
1+
package com.fishercoder.common.utils;
22

3-
import com.stevesun.common.classes.ListNode;
3+
import com.fishercoder.common.classes.ListNode;
44

55
import java.util.ArrayList;
66
import java.util.List;

0 commit comments

Comments
 (0)