Skip to content

Commit 27859df

Browse files
committed
💎 💢
This reverts commit 00824b8.
1 parent cf7f5e5 commit 27859df

12 files changed

+12
-12
lines changed

config/common/src/main/java/band/kessoku/lib/config/serializers/Json5Serializer.java renamed to config/common/src/main/java/band/kessoku/lib/config/api/serializers/Json5Serializer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package band.kessoku.lib.config.serializers;
16+
package band.kessoku.lib.config.api.serializers;
1717

1818
import band.kessoku.lib.config.api.AbstractConfig;
1919
import band.kessoku.lib.config.api.ConfigSerializer;

config/common/src/main/java/band/kessoku/lib/config/serializers/JsonSerializer.java renamed to config/common/src/main/java/band/kessoku/lib/config/api/serializers/JsonSerializer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package band.kessoku.lib.config.serializers;
16+
package band.kessoku.lib.config.api.serializers;
1717

1818
import band.kessoku.lib.config.api.AbstractConfig;
1919
import band.kessoku.lib.config.api.ConfigSerializer;

config/common/src/main/java/band/kessoku/lib/config/serializers/TomlSerializer.java renamed to config/common/src/main/java/band/kessoku/lib/config/api/serializers/TomlSerializer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package band.kessoku.lib.config.serializers;
16+
package band.kessoku.lib.config.api.serializers;
1717

1818
import band.kessoku.lib.config.api.AbstractConfig;
1919
import band.kessoku.lib.config.api.ConfigSerializer;

config/common/src/main/java/band/kessoku/lib/config/values/BooleanValue.java renamed to config/common/src/main/java/band/kessoku/lib/config/api/values/BooleanValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package band.kessoku.lib.config.values;
16+
package band.kessoku.lib.config.api.values;
1717

1818
import org.jetbrains.annotations.Contract;
1919
import org.jetbrains.annotations.NotNull;

config/common/src/main/java/band/kessoku/lib/config/values/DefaultConfigValue.java renamed to config/common/src/main/java/band/kessoku/lib/config/api/values/DefaultConfigValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package band.kessoku.lib.config.values;
16+
package band.kessoku.lib.config.api.values;
1717

1818
import band.kessoku.lib.config.api.ConfigValue;
1919

config/common/src/main/java/band/kessoku/lib/config/values/DoubleValue.java renamed to config/common/src/main/java/band/kessoku/lib/config/api/values/DoubleValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package band.kessoku.lib.config.values;
16+
package band.kessoku.lib.config.api.values;
1717

1818
import org.jetbrains.annotations.Contract;
1919
import org.jetbrains.annotations.NotNull;

config/common/src/main/java/band/kessoku/lib/config/values/FloatValue.java renamed to config/common/src/main/java/band/kessoku/lib/config/api/values/FloatValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package band.kessoku.lib.config.values;
16+
package band.kessoku.lib.config.api.values;
1717

1818
import org.jetbrains.annotations.Contract;
1919
import org.jetbrains.annotations.NotNull;

config/common/src/main/java/band/kessoku/lib/config/values/IntegerValue.java renamed to config/common/src/main/java/band/kessoku/lib/config/api/values/IntegerValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package band.kessoku.lib.config.values;
16+
package band.kessoku.lib.config.api.values;
1717

1818
import org.jetbrains.annotations.Contract;
1919
import org.jetbrains.annotations.NotNull;

config/common/src/main/java/band/kessoku/lib/config/values/ListValue.java renamed to config/common/src/main/java/band/kessoku/lib/config/api/values/ListValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package band.kessoku.lib.config.values;
16+
package band.kessoku.lib.config.api.values;
1717

1818
import com.google.common.collect.ImmutableList;
1919
import com.google.common.collect.Sets;

config/common/src/main/java/band/kessoku/lib/config/values/LongValue.java renamed to config/common/src/main/java/band/kessoku/lib/config/api/values/LongValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package band.kessoku.lib.config.values;
16+
package band.kessoku.lib.config.api.values;
1717

1818
import org.jetbrains.annotations.Contract;
1919
import org.jetbrains.annotations.NotNull;

config/common/src/main/java/band/kessoku/lib/config/values/MapValue.java renamed to config/common/src/main/java/band/kessoku/lib/config/api/values/MapValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package band.kessoku.lib.config.values;
16+
package band.kessoku.lib.config.api.values;
1717

1818
import com.google.common.collect.ImmutableMap;
1919
import org.jetbrains.annotations.Contract;

config/common/src/main/java/band/kessoku/lib/config/values/StringValue.java renamed to config/common/src/main/java/band/kessoku/lib/config/api/values/StringValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package band.kessoku.lib.config.values;
16+
package band.kessoku.lib.config.api.values;
1717

1818
import org.jetbrains.annotations.Contract;
1919
import org.jetbrains.annotations.NotNull;

0 commit comments

Comments
 (0)