Skip to content

Commit a881072

Browse files
akashpambharOliver Weiler
authored andcommitted
fix package name in missed files
1 parent 3d082db commit a881072

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ It uses the `file` and `directory` methods to create files and directories withi
6363
```java
6464
import 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;
6969
import static java.nio.charset.StandardCharsets.UTF_8;
7070

7171
class ZipForgeDemo {
@@ -110,9 +110,9 @@ Archive: demo.zip
110110
The 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
116116
import kotlin.io.path.Path
117117

118118
fun main() {

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,8 @@
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>

src/test/java/io/github/helpermethod/zipforge/ZipForgeTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package 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;
66
import static java.nio.charset.StandardCharsets.UTF_8;
77
import static java.nio.file.StandardOpenOption.CREATE_NEW;
88
import static java.nio.file.StandardOpenOption.WRITE;

0 commit comments

Comments
 (0)