Skip to content

Commit dd9e0e1

Browse files
committed
Merge pull request #2 from chengn/master
rename package
2 parents 7683936 + f90b66a commit dd9e0e1

File tree

8 files changed

+14
-8
lines changed

8 files changed

+14
-8
lines changed

.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="src" path="src"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.6.0_10"/>
54
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
5+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.6.0_10"/>
66
<classpathentry kind="output" path="bin"/>
77
</classpath>

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313

1414
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
1515
hs_err_pid*
16+
/bin

.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>chengn-lang</name>
3+
<name>sword-lang</name>
44
<comment></comment>
55
<projects>
66
</projects>

META-INF/NOTICE.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
need jar
1+
2+
====project home
3+
https://github.com/sword-org/sword-lang
4+
5+
6+
====need jar
27
commons-lang3
38
Log4j

src/org/sword/chengn/lang/DateTime.java renamed to src/org/sword/lang/DateTime.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
*
33
*/
4-
package org.sword.chengn.lang;
4+
package org.sword.lang;
55

66
import java.util.Calendar;
77
import java.util.Date;

src/org/sword/chengn/lang/DateTimeUtil.java renamed to src/org/sword/lang/DateTimeUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
*
33
*/
4-
package org.sword.chengn.lang;
4+
package org.sword.lang;
55

66
import java.text.ParseException;
77
import java.text.SimpleDateFormat;

src/test/org/sword/chengn/lang/DateTimeTest.java renamed to src/test/org/sword/lang/DateTimeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
*
33
*/
4-
package test.org.sword.chengn.lang;
4+
package test.org.sword.lang;
55

66
import org.junit.Test;
77

src/test/org/sword/chengn/lang/DateTimeUtilTest.java renamed to src/test/org/sword/lang/DateTimeUtilTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
*
33
*/
4-
package test.org.sword.chengn.lang;
4+
package test.org.sword.lang;
55

66
import static org.junit.Assert.assertEquals;
77

@@ -10,7 +10,7 @@
1010
import java.util.Date;
1111

1212
import org.junit.Test;
13-
import org.sword.chengn.lang.DateTimeUtil;
13+
import org.sword.lang.DateTimeUtil;
1414

1515

1616
/**

0 commit comments

Comments
 (0)