Skip to content

Commit

Permalink
docs: remove Allay Project yyyy/mm/dd content in javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
smartcmd committed Sep 18, 2024
1 parent 3b0d3fa commit 6469ed5
Show file tree
Hide file tree
Showing 416 changed files with 39 additions and 763 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import org.allaymc.api.block.component.data.BlockStateDataComponent;

/**
* Allay Project 2023/3/19
*
* @author daoge_cmd
*/
public interface BlockBehavior extends
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
import static org.allaymc.api.block.property.type.BlockPropertyTypes.*;

/**
* Allay Project 2024/8/15
*
* @author daoge_cmd
*/
@UtilityClass
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
import static org.allaymc.api.item.ItemHelper.isSword;

/**
* Allay Project 2023/4/8
*
* @author daoge_cmd
*/
public interface BlockBaseComponent extends BlockComponent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
/**
* Represents a block component
* <p>
* Allay Project 2023/3/19
*
* @author daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
import java.util.Objects;

/**
* Allay Project 2023/9/15
*
* @author daoge_cmd
*/
public interface BlockEntityHolderComponent<T extends BlockEntity> extends BlockComponent {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package org.allaymc.api.block.component;

/**
* Allay Project 27/06/2024
*
* @author IWareQ
*/
public interface BlockFallableBaseComponent extends BlockBaseComponent {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package org.allaymc.api.block.component;

/**
* Allay Project 2024/6/9
*
* @author daoge_cmd
*/
public interface BlockLiquidComponent extends BlockComponent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import org.allaymc.api.block.type.BlockState;

/**
* Allay Project 2024/8/18
*
* @author daoge_cmd
*/
public interface BlockWoodBaseComponent extends BlockBaseComponent {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.allaymc.api.block.component;

/**
* Allay Project 2023/6/1
*
* @author Cool_Loong
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import java.awt.*;

/**
* Allay Project 2023/5/1
*
* @author daoge_cmd | CoolLoong
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import org.allaymc.api.block.type.BlockState;

/**
* Allay Project 2023/3/25
*
* @author daoge_cmd | CoolLoong
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
* <p>
* See <a href="https://en.wikipedia.org/wiki/Compass_rose#/media/File:Brosen_windrose.svg">wiki</a> for more information.
* <p>
* Allay Project 2024/8/16
*
* @author joserobjr | Cool_Loong
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
/**
* Represents a block state in the world.
* <p>
* Allay Project 2023/8/11
*
* @author daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
* @param clickPos The precise pos where the player clicked
* @param blockFace The face of the block that the player clicked on
* <p>
* Allay Project 2024/6/20
*
* @author daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
* <p>
* See <a href="https://zh.minecraft.wiki/w/%E5%9F%BA%E5%B2%A9%E7%89%88%E6%9D%90%E6%96%99">Bedrock Materials</a> for details
* <p>
* Allay Project 2024/6/11
*
* @author daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
/**
* Represents a type of material.
* <p>
* Allay Project 2024/6/11
*
* @author daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* <br>
* This prevents writing a lot of complicated code for the blocks which are using the same block property type.
* <p>
* Allay Project 2024/8/18
*
* @author daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
/**
* The base class for block property type (boolean, enum, int)
* <p>
* Allay Project 2023/3/19
*
* @author daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
import java.util.List;

/**
* Allay Project 2023/3/19
*
* @author daoge_cmd
*/
public sealed interface BlockPropertyType<DATATYPE> permits BaseBlockPropertyType {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
import java.util.List;

/**
* Allay Project 2023/3/19
*
* @author daoge_cmd
*/
public final class BooleanPropertyType extends BaseBlockPropertyType<Boolean> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
import java.util.HashMap;

/**
* Allay Project 2023/3/19
*
* @author daoge_cmd
*/
public final class EnumPropertyType<T extends Enum<T>> extends BaseBlockPropertyType<T> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
import java.util.stream.IntStream;

/**
* Allay Project 2023/3/19
*
* @author daoge_cmd
*/
@Getter
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package org.allaymc.api.block.tag;

/**
* Allay Project 2024/6/11
*
* @author daoge_cmd
*/
public record BlockTag(String name) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
import java.util.Map;

/**
* Allay Project 2023/4/29
*
* @author daoge_cmd
*/
public interface BlockState {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
/**
* Interface representing a type of block.
* <p>
* Allay Project 2023/3/19
*
* @author daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import org.allaymc.api.blockentity.component.BlockEntityBaseComponent;

/**
* Allay Project 2023/9/15
*
* @author daoge_cmd
*/
public interface BlockEntity extends BlockEntityBaseComponent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
import org.cloudburstmc.nbt.NbtMap;

/**
* Allay Project 2023/9/23
*
* @author daoge_cmd
*/
@Slf4j
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
import java.util.Objects;

/**
* Allay Project 2023/9/15
*
* @author daoge_cmd
*/
public interface BlockEntityBaseComponent extends BlockEntityComponent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import org.allaymc.api.component.interfaces.Component;

/**
* Allay Project 2023/9/15
*
* @author daoge_cmd
*/
public interface BlockEntityComponent extends Component {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
import java.util.Map;

/**
* Allay Project 2023/9/16
*
* @author daoge_cmd
*/
public interface BlockEntityContainerHolderComponent extends ContainerHolder, BlockEntityComponent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import org.allaymc.api.block.type.BlockType;

/**
* Allay Project 2024/8/11
*
* @author daoge_cmd
*/
public interface BlockEntityFurnaceBaseComponent extends BlockEntityBaseComponent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import org.cloudburstmc.nbt.NbtMap;

/**
* Allay Project 2024/8/16
*
* @author daoge_cmd
*/
public interface BlockEntitySignBaseComponent extends BlockEntityBaseComponent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
import org.cloudburstmc.nbt.NbtMap;

/**
* Allay Project 2023/9/15
*
* @author daoge_cmd
*/
public interface BlockEntityInitInfo extends ComponentInitInfo {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
import org.cloudburstmc.nbt.NbtMapBuilder;

/**
* Allay Project 2023/9/15
*
* @author daoge_cmd
*/
@RequiredArgsConstructor(access = AccessLevel.PROTECTED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import org.allaymc.api.blockentity.initinfo.BlockEntityInitInfo;

/**
* Allay Project 2023/9/15
*
* @author daoge_cmd
*/
public interface BlockEntityType<T extends BlockEntity> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import org.allaymc.api.blockentity.interfaces.*;

/**
* Allay Project 2024/2/24
*
* @author daoge_cmd
*/
public final class BlockEntityTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
import static org.allaymc.api.perm.tree.PermTree.PermChangeType.ADD;

/**
* Allay Project 2024/1/6
*
* @author daoge_cmd
*/
@Getter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
import static org.cloudburstmc.protocol.bedrock.data.GameType.SPECTATOR;

/**
* Allay Project 2023/7/9
*
* @author daoge_cmd
*/
@Getter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import lombok.Getter;

/**
* Allay Project 2023/6/23
*
* @author LucGamesYT | daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.allaymc.api.client.data;

/**
* Allay Project 2023/6/23
*
* @author LucGamesYT | daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import java.util.UUID;

/**
* Allay Project 2023/6/23
*
* @author LucGamesYT | daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.allaymc.api.client.data;

/**
* Allay Project 2023/6/23
*
* @author LucGamesYT | daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.allaymc.api.client.skin;

/**
* Allay Project 2023/6/23
*
* @author LucGamesYT | daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.allaymc.api.client.skin;

/**
* Allay Project 2023/6/23
*
* @author LucGamesYT | daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import java.util.List;

/**
* Allay Project 2023/6/23
*
* @author LucGamesYT | daoge_cmd
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import java.util.UUID;

/**
* Allay Project 2023/6/23
*
* @author LucGamesYT | daoge_cmd
*/
Expand Down
Loading

0 comments on commit 6469ed5

Please sign in to comment.