Skip to content

Commit

Permalink
Remove ugly "Created by mrAppleXZ" comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mrapplexz committed Jul 5, 2020
1 parent 883d252 commit 3927944
Show file tree
Hide file tree
Showing 19 changed files with 0 additions and 57 deletions.
3 changes: 0 additions & 3 deletions src/main/java/net/pearx/jehc/Jehc.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@

import java.util.Collections;

/*
* Created by mrAppleXZ on 20.05.17 15:54.
*/
@Mod(name = Jehc.NAME, modid = Jehc.MODID, version = Jehc.VERSION, acceptedMinecraftVersions = Jehc.ACCEPTED_MINECRAFT_VERSIONS, dependencies = Jehc.DEPENDENCIES, clientSideOnly = true)
@SideOnly(Side.CLIENT)
public class Jehc {
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/net/pearx/jehc/jei/JehcPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@
import java.util.ArrayList;
import java.util.List;

/*
* Created by mrAppleXZ on 20.05.17 16:23.
*/
@JEIPlugin
@SideOnly(Side.CLIENT)
public class JehcPlugin implements IModPlugin {
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/net/pearx/jehc/jei/JehcRecipeCategory.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

/*
* Created by mrAppleXZ on 22.03.18 20:48.
*/
@SideOnly(Side.CLIENT)
public abstract class JehcRecipeCategory<T extends IRecipeWrapper> implements IRecipeCategory<T> {
private String uid;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@

import java.util.Arrays;

/*
* Created by mrAppleXZ on 21.05.17 11:51.
*/
@SideOnly(Side.CLIENT)
public class ApiaryRecipeCategory extends JehcRecipeCategory<ApiaryRecipeWrapper> {
public ApiaryRecipeCategory(IGuiHelper help) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
import net.minecraftforge.fml.relauncher.SideOnly;


/*
* Created by mrAppleXZ on 21.05.17 11:41.
*/
@SideOnly(Side.CLIENT)
public class ApiaryRecipeWrapper implements IRecipeWrapper {
private ItemStack out;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

/*
* Created by mrAppleXZ on 22.03.18 20:29.
*/
@SideOnly(Side.CLIENT)
public class GrinderRecipeCategory extends MachineRecipeCategory {
public GrinderRecipeCategory(IGuiHelper helper) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
import java.util.List;
import java.util.Map;

/*
* Created by mrAppleXZ on 22.03.18 20:46.
*/
public class MachineRecipeCategory extends JehcRecipeCategory<MachineRecipeWrapper> {
private Class<?> recClass;
private String recField;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
import java.util.ArrayList;
import java.util.List;

/*
* Created by mrAppleXZ on 22.03.18 20:58.
*/
public class MachineRecipeWrapper implements IRecipeWrapper {
private final ItemStack in;
private final ItemStack[] out;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

/*
* Created by mrAppleXZ on 20.05.17 16:08.
*/
@SideOnly(Side.CLIENT)
public class PresserRecipeCategory extends MachineRecipeCategory {
public PresserRecipeCategory(IGuiHelper helper) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
import mezz.jei.api.IGuiHelper;
import net.minecraft.item.ItemStack;

/*
* Created by mrAppleXZ on 05.07.18 2:57
*/
public class WaterFilterCategory extends MachineRecipeCategory {
public WaterFilterCategory(IGuiHelper helper) {
super("jehc.waterfilter", new ItemStack(BlockRegistry.waterfilterItemBlock), "waterfilter", WaterFilterRecipes.class, "waterfilterList", helper, GuiWaterFilter.class, ContainerWaterFilter.class);
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/net/pearx/jehc/jei/sbm/SBMRecipeCategory.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
import net.minecraftforge.fml.relauncher.SideOnly;
import net.pearx.jehc.jei.JehcRecipeCategory;

/*
* Created by mrAppleXZ on 20.05.17 23:54.
*/
@SideOnly(Side.CLIENT)
public abstract class SBMRecipeCategory extends JehcRecipeCategory<IRecipeWrapper> {
private Class<? extends GuiContainer> guiClass;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
import java.util.ArrayList;
import java.util.List;

/*
* Created by mrAppleXZ on 20.05.17 23:51.
*/
@SideOnly(Side.CLIENT)
public class MarketRecipeCategory extends SBMRecipeCategory {
public MarketRecipeCategory(IGuiHelper helper) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

/*
* Created by mrAppleXZ on 20.05.17 23:45.
*/
@SideOnly(Side.CLIENT)
public class MarketRecipeWrapper implements IRecipeWrapper {
private MarketData md;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
import java.util.ArrayList;
import java.util.List;

/*
* Created by mrAppleXZ on 20.05.17 23:01.
*/
@SideOnly(Side.CLIENT)
public class ShippingBinRecipeCategory extends SBMRecipeCategory {
public ShippingBinRecipeCategory(IGuiHelper helper) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

/*
* Created by mrAppleXZ on 20.05.17 22:57.
*/
@SideOnly(Side.CLIENT)
public class ShippingBinRecipeWrapper implements IRecipeWrapper {
private ShippingBinData data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@

import java.util.Arrays;

/*
* Created by mrAppleXZ on 19.07.17 11:34.
*/
@SideOnly(Side.CLIENT)
public class GroundTrapRecipeCategory extends TrapRecipeCategory {
public GroundTrapRecipeCategory(IGuiHelper helper) {
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/net/pearx/jehc/jei/trap/TrapRecipeCategory.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
import net.minecraftforge.fml.relauncher.SideOnly;
import net.pearx.jehc.jei.JehcRecipeCategory;

/*
* Created by mrAppleXZ on 19.07.17 11:06.
*/
@SideOnly(Side.CLIENT)
public abstract class TrapRecipeCategory extends JehcRecipeCategory<TrapRecipeWrapper> {
private Class<? extends GuiContainer> guiClass;
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/net/pearx/jehc/jei/trap/TrapRecipeWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

/*
* Created by mrAppleXZ on 19.07.17 10:39.
*/
@SideOnly(Side.CLIENT)
public abstract class TrapRecipeWrapper implements IRecipeWrapper {
private final ItemStack in;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@

import java.util.Arrays;

/*
* Created by mrAppleXZ on 19.07.17 12:34.
*/
@SideOnly(Side.CLIENT)
public class WaterTrapRecipeCategory extends TrapRecipeCategory {
public WaterTrapRecipeCategory(IGuiHelper helper) {
Expand Down

0 comments on commit 3927944

Please sign in to comment.