Skip to content

Commit

Permalink
chore: Relocate all classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
nstdio committed Sep 22, 2021
1 parent 3b3da54 commit 0a89cb0
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package io.github.nstdio.http.ext.ext;
package io.github.nstdio.http.ext;

import java.io.InputStream;
import java.net.http.HttpResponse.BodyHandler;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package io.github.nstdio.http.ext.ext;
package io.github.nstdio.http.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
Expand Up @@ -20,7 +20,7 @@
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package io.github.nstdio.http.ext.ext;
package io.github.nstdio.http.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
Expand Up @@ -23,5 +23,5 @@
module http.client.ext {
requires java.net.http;

exports io.github.nstdio.http.ext.ext;
exports io.github.nstdio.http.ext;
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package io.github.nstdio.http.ext.ext;
package io.github.nstdio.http.ext;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package io.github.nstdio.http.ext.ext;
package io.github.nstdio.http.ext;

import static io.github.nstdio.http.ext.ext.BodyHandlers.ofDecompressing;
import static com.jayway.jsonpath.matchers.JsonPathMatchers.*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package io.github.nstdio.http.ext.ext;
package io.github.nstdio.http.ext;

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 io.github.nstdio.http.ext.Compression.deflate;
import static io.github.nstdio.http.ext.Compression.gzip;
import static io.github.nstdio.http.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 0a89cb0

Please sign in to comment.