Skip to content

Commit

Permalink
Move everything to the net.commoble package
Browse files Browse the repository at this point in the history
  • Loading branch information
Commoble committed Feb 25, 2024
1 parent b845e43 commit 69b6c92
Show file tree
Hide file tree
Showing 20 changed files with 30 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

import com.mojang.serialization.JsonOps;

import commoble.databuddy.datagen.BlockStateFile;
import commoble.databuddy.datagen.BlockStateFile.Case;
import commoble.databuddy.datagen.BlockStateFile.Model;
import commoble.databuddy.datagen.BlockStateFile.Multipart;
import commoble.databuddy.datagen.BlockStateFile.OrCase;
import commoble.databuddy.datagen.BlockStateFile.PropertyValue;
import commoble.databuddy.datagen.BlockStateFile.Variants;
import commoble.databuddy.datagen.BlockStateFile.WhenApply;
import commoble.databuddy.datagen.SimpleModel;
import net.commoble.databuddy.datagen.BlockStateFile;
import net.commoble.databuddy.datagen.SimpleModel;
import net.commoble.databuddy.datagen.BlockStateFile.Case;
import net.commoble.databuddy.datagen.BlockStateFile.Model;
import net.commoble.databuddy.datagen.BlockStateFile.Multipart;
import net.commoble.databuddy.datagen.BlockStateFile.OrCase;
import net.commoble.databuddy.datagen.BlockStateFile.PropertyValue;
import net.commoble.databuddy.datagen.BlockStateFile.Variants;
import net.commoble.databuddy.datagen.BlockStateFile.WhenApply;
import net.minecraft.Util;
import net.minecraft.client.resources.model.BlockModelRotation;
import net.minecraft.core.registries.Registries;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import commoble.databuddy.config.ConfigHelper;
import net.commoble.databuddy.config.ConfigHelper;
import net.neoforged.bus.api.IEventBus;
import net.neoforged.fml.common.Mod;
import net.neoforged.fml.config.ModConfig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import com.mojang.serialization.Codec;
import com.mojang.serialization.codecs.RecordCodecBuilder;

import commoble.databuddy.config.ConfigHelper;
import commoble.databuddy.config.ConfigHelper.ConfigObject;
import net.commoble.databuddy.config.ConfigHelper;
import net.commoble.databuddy.config.ConfigHelper.ConfigObject;
import net.minecraft.core.BlockPos;
import net.minecraft.resources.ResourceLocation;
import net.neoforged.neoforge.common.ModConfigSpec;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import com.google.common.collect.Sets;

import commoble.databuddy.data.MergeableCodecDataManager;
import net.commoble.databuddy.data.MergeableCodecDataManager;
import net.minecraft.resources.ResourceLocation;

public class FlavorTags
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import com.mojang.serialization.Codec;
import com.mojang.serialization.JsonOps;

import commoble.databuddy.codec.RegistryDispatcher;
import net.commoble.databuddy.codec.RegistryDispatcher;
import net.minecraft.resources.ResourceLocation;
import net.neoforged.bus.api.SubscribeEvent;
import net.neoforged.fml.ModList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ of this software and associated documentation files (the "Software"), to deal
*/

package commoble.databuddy.codec;
package net.commoble.databuddy.codec;

import java.util.Optional;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ of this software and associated documentation files (the "Software"), to deal
SOFTWARE.
*/
package commoble.databuddy.codec;
package net.commoble.databuddy.codec;

import java.util.function.Consumer;
import java.util.function.Function;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ of this software and associated documentation files (the "Software"), to deal
*/

package commoble.databuddy.codec;
package net.commoble.databuddy.codec;

import java.util.ArrayList;
import java.util.HashMap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ of this software and associated documentation files (the "Software"), to deal
// DataFixerUpper is Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
*/

package commoble.databuddy.config;
package net.commoble.databuddy.config;

import java.time.temporal.Temporal;
import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package commoble.databuddy.data;
package net.commoble.databuddy.data;

import java.util.HashMap;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ of this software and associated documentation files (the "Software"), to deal
*/

package commoble.databuddy.data;
package net.commoble.databuddy.data;

import java.io.Reader;
import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ of this software and associated documentation files (the "Software"), to deal
SOFTWARE.
*/
package commoble.databuddy.datagen;
package net.commoble.databuddy.datagen;

import java.util.ArrayList;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ of this software and associated documentation files (the "Software"), to deal
SOFTWARE.
*/

package commoble.databuddy.datagen;
package net.commoble.databuddy.datagen;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ of this software and associated documentation files (the "Software"), to deal
SOFTWARE.
*/
package commoble.databuddy.datagen;
package net.commoble.databuddy.datagen;

import java.util.HashMap;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ of this software and associated documentation files (the "Software"), to deal
*/


package commoble.databuddy.nbt;
package net.commoble.databuddy.nbt;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ of this software and associated documentation files (the "Software"), to deal
SOFTWARE.
*/
package commoble.databuddy.nbt;
package net.commoble.databuddy.nbt;

import java.util.HashMap;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ of this software and associated documentation files (the "Software"), to deal
*
*/

package commoble.databuddy.plugin;
package net.commoble.databuddy.plugin;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import com.mojang.serialization.JsonOps;
import com.mojang.serialization.codecs.RecordCodecBuilder;

import net.commoble.databuddy.codec.NullableFieldCodec;
import net.minecraft.nbt.NbtOps;
import net.minecraft.nbt.Tag;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
import com.mojang.serialization.JsonOps;
import com.mojang.serialization.codecs.RecordCodecBuilder;

import net.commoble.databuddy.codec.WriteFieldsFirstOps;

public class WriteFieldsFirstOpsTest
{
private static interface StringProviderType extends Supplier<Codec<? extends StringProvider>>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import com.mojang.serialization.DataResult;
import com.mojang.serialization.codecs.RecordCodecBuilder;

import commoble.databuddy.config.ConfigHelper.TomlConfigOps;
import net.commoble.databuddy.config.ConfigHelper.TomlConfigOps;

public class TomlConfigOpsTests
{
Expand Down

0 comments on commit 69b6c92

Please sign in to comment.