-
Notifications
You must be signed in to change notification settings - Fork 470
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
test/testclasses/src/main/java/stdlib/util/TimeZoneTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package stdlib.util; | ||
|
||
import java.util.TimeZone; | ||
|
||
public class TimeZoneTest { | ||
|
||
public static void main(String[] args) { | ||
System.out.println(TimeZone.getDefault()); | ||
} | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
...n/java/stdlib/basic/util/ZipFileTest.java → ...rc/main/java/stdlib/util/ZipFileTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package stdlib.basic.util; | ||
package stdlib.util; | ||
|
||
import java.util.Collections; | ||
import java.util.zip.ZipEntry; | ||
|