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
6363``` java
6464import java.nio.charset.StandardCharsets ;
6565
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 ;
6969import static java.nio.charset.StandardCharsets.UTF_8 ;
7070
7171class ZipForgeDemo {
@@ -110,9 +110,9 @@ Archive: demo.zip
110110The same example written in Kotlin. Note that it uses the same API as the Java version.
111111
112112``` 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
116116import kotlin.io.path.Path
117117
118118fun main () {
Original file line number Diff line number Diff line change 223223 <configuration >
224224 <module >
225225 <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 >
228228 </moduleInfo >
229229 </module >
230230 <overwriteExistingFiles >true</overwriteExistingFiles >
Original file line number Diff line number Diff line change 11package io .github .helpermethod .zipforge ;
22
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 ;
66import static java .nio .charset .StandardCharsets .UTF_8 ;
77import static java .nio .file .StandardOpenOption .CREATE_NEW ;
88import static java .nio .file .StandardOpenOption .WRITE ;
You can’t perform that action at this time.
0 commit comments