Skip to content

Commit 8553441

Browse files
author
Gustavo Avila
committed
Rename package id
1 parent 974d893 commit 8553441

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+178
-182
lines changed

src/main/java/tech/gusavila92/apache/commons/codec/BinaryDecoder.java renamed to src/main/java/dev/gustavoavila/apache/commons/codec/BinaryDecoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package tech.gusavila92.apache.commons.codec;
18+
package dev.gustavoavila.apache.commons.codec;
1919

2020
/**
2121
* Defines common decoding methods for byte array decoders.

src/main/java/tech/gusavila92/apache/commons/codec/BinaryEncoder.java renamed to src/main/java/dev/gustavoavila/apache/commons/codec/BinaryEncoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package tech.gusavila92.apache.commons.codec;
18+
package dev.gustavoavila.apache.commons.codec;
1919

2020
/**
2121
* Defines common encoding methods for byte array encoders.

src/main/java/tech/gusavila92/apache/commons/codec/CharEncoding.java renamed to src/main/java/dev/gustavoavila/apache/commons/codec/CharEncoding.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package tech.gusavila92.apache.commons.codec;
18+
package dev.gustavoavila.apache.commons.codec;
1919

2020
/**
2121
* Character encoding names required of every implementation of the Java platform.

src/main/java/tech/gusavila92/apache/commons/codec/Charsets.java renamed to src/main/java/dev/gustavoavila/apache/commons/codec/Charsets.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package tech.gusavila92.apache.commons.codec;
17+
package dev.gustavoavila.apache.commons.codec;
1818

1919
import java.nio.charset.Charset;
2020

src/main/java/tech/gusavila92/apache/commons/codec/Decoder.java renamed to src/main/java/dev/gustavoavila/apache/commons/codec/Decoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package tech.gusavila92.apache.commons.codec;
18+
package dev.gustavoavila.apache.commons.codec;
1919

2020
/**
2121
* Provides the highest level of abstraction for Decoders.

src/main/java/tech/gusavila92/apache/commons/codec/DecoderException.java renamed to src/main/java/dev/gustavoavila/apache/commons/codec/DecoderException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package tech.gusavila92.apache.commons.codec;
18+
package dev.gustavoavila.apache.commons.codec;
1919

2020
/**
2121
* Thrown when there is a failure condition during the decoding process. This exception is thrown when a {@link Decoder}

src/main/java/tech/gusavila92/apache/commons/codec/Encoder.java renamed to src/main/java/dev/gustavoavila/apache/commons/codec/Encoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package tech.gusavila92.apache.commons.codec;
18+
package dev.gustavoavila.apache.commons.codec;
1919

2020
/**
2121
* Provides the highest level of abstraction for Encoders.

src/main/java/tech/gusavila92/apache/commons/codec/EncoderException.java renamed to src/main/java/dev/gustavoavila/apache/commons/codec/EncoderException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package tech.gusavila92.apache.commons.codec;
18+
package dev.gustavoavila.apache.commons.codec;
1919

2020
/**
2121
* Thrown when there is a failure condition during the encoding process. This exception is thrown when an

src/main/java/tech/gusavila92/apache/commons/codec/StringDecoder.java renamed to src/main/java/dev/gustavoavila/apache/commons/codec/StringDecoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package tech.gusavila92.apache.commons.codec;
18+
package dev.gustavoavila.apache.commons.codec;
1919

2020
/**
2121
* Defines common decoding methods for String decoders.

src/main/java/tech/gusavila92/apache/commons/codec/StringEncoder.java renamed to src/main/java/dev/gustavoavila/apache/commons/codec/StringEncoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package tech.gusavila92.apache.commons.codec;
18+
package dev.gustavoavila.apache.commons.codec;
1919

2020
/**
2121
* Defines common encoding methods for String encoders.

0 commit comments

Comments
 (0)