File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
src/test/java/io/github/helpermethod/zipforge Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -63,9 +63,9 @@ It uses the `file` and `directory` methods to create files and directories withi
63
63
``` java
64
64
import java.nio.charset.StandardCharsets ;
65
65
66
- import static io.github.helpermethod.zip_forge .ZipForge.createZipFile ;
67
- import static io.github.helpermethod.zip_forge .ZipForge.file ;
68
- import static io.github.helpermethod.zip_forge .ZipForge.directory ;
66
+ import static io.github.helpermethod.zipforge .ZipForge.createZipFile ;
67
+ import static io.github.helpermethod.zipforge .ZipForge.file ;
68
+ import static io.github.helpermethod.zipforge .ZipForge.directory ;
69
69
import static java.nio.charset.StandardCharsets.UTF_8 ;
70
70
71
71
class ZipForgeDemo {
@@ -110,9 +110,9 @@ Archive: demo.zip
110
110
The same example written in Kotlin. Note that it uses the same API as the Java version.
111
111
112
112
``` kotlin
113
- import io.github.helpermethod.zip_forge .ZipForge.createZipFile
114
- import io.github.helpermethod.zip_forge .ZipForge.directory
115
- import io.github.helpermethod.zip_forge .ZipForge.file
113
+ import io.github.helpermethod.zipforge .ZipForge.createZipFile
114
+ import io.github.helpermethod.zipforge .ZipForge.directory
115
+ import io.github.helpermethod.zipforge .ZipForge.file
116
116
import kotlin.io.path.Path
117
117
118
118
fun main () {
Original file line number Diff line number Diff line change 223
223
<configuration >
224
224
<module >
225
225
<moduleInfo >
226
- <name >io.github.helpermethod.zip_forge </name >
227
- <exports >io.github.helpermethod.zip_forge </exports >
226
+ <name >io.github.helpermethod.zipforge </name >
227
+ <exports >io.github.helpermethod.zipforge </exports >
228
228
</moduleInfo >
229
229
</module >
230
230
<overwriteExistingFiles >true</overwriteExistingFiles >
Original file line number Diff line number Diff line change 1
1
package io .github .helpermethod .zipforge ;
2
2
3
- import static io .github .helpermethod .zip_forge .ZipForge .createZipFile ;
4
- import static io .github .helpermethod .zip_forge .ZipForge .directory ;
5
- import static io .github .helpermethod .zip_forge .ZipForge .file ;
3
+ import static io .github .helpermethod .zipforge .ZipForge .createZipFile ;
4
+ import static io .github .helpermethod .zipforge .ZipForge .directory ;
5
+ import static io .github .helpermethod .zipforge .ZipForge .file ;
6
6
import static java .nio .charset .StandardCharsets .UTF_8 ;
7
7
import static java .nio .file .StandardOpenOption .CREATE_NEW ;
8
8
import static java .nio .file .StandardOpenOption .WRITE ;
You can’t perform that action at this time.
0 commit comments