Skip to content

Commit

Permalink
chore: Rename package com.github.nstdio -> io.github.nstdio.
Browse files Browse the repository at this point in the history
  • Loading branch information
nstdio committed Sep 5, 2021
1 parent 6e32a4f commit f1718bc
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.nstdio.http.ext;
package io.github.nstdio.http.ext.ext;

import java.io.InputStream;
import java.net.http.HttpResponse.BodyHandler;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.nstdio.http.ext;
package io.github.nstdio.http.ext.ext;

import static java.util.function.Predicate.not;
import static java.util.stream.Collectors.toList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.nstdio.http.ext;
package io.github.nstdio.http.ext.ext;

import java.io.InputStream;
import java.net.http.HttpResponse.BodySubscriber;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module http.client.ext {
requires java.net.http;

exports com.github.nstdio.http.ext;
exports io.github.nstdio.http.ext.ext;
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.nstdio.http.ext;
package io.github.nstdio.http.ext.ext;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.nstdio.http.ext;
package io.github.nstdio.http.ext.ext;

import static com.github.nstdio.http.ext.BodyHandlers.ofDecompressing;
import static io.github.nstdio.http.ext.ext.BodyHandlers.ofDecompressing;
import static com.jayway.jsonpath.matchers.JsonPathMatchers.*;
import static org.hamcrest.MatcherAssert.assertThat;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.github.nstdio.http.ext;
package io.github.nstdio.http.ext.ext;

import static com.github.nstdio.http.ext.Compression.deflate;
import static com.github.nstdio.http.ext.Compression.gzip;
import static com.github.nstdio.http.ext.DecompressingBodyHandler.decompressionFn;
import static io.github.nstdio.http.ext.ext.Compression.deflate;
import static io.github.nstdio.http.ext.ext.Compression.gzip;
import static io.github.nstdio.http.ext.ext.DecompressingBodyHandler.decompressionFn;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
Expand Down

0 comments on commit f1718bc

Please sign in to comment.