Removed @author javadocs

This commit is contained in:
Konstantin Shandurenko 2021-02-22 14:53:04 +03:00
parent b475a4cd78
commit 714e107eb3
5 changed files with 0 additions and 15 deletions

View File

@ -14,9 +14,6 @@ import org.jetbrains.annotations.NotNull;
import java.util.function.BiFunction;
/**
* Created by k.shandurenko on 22.02.2021
*/
public class RangedAttackGoal extends GoalSelector {
private long lastShot;

View File

@ -16,9 +16,6 @@ import java.util.Collection;
import java.util.Optional;
import java.util.stream.Collectors;
/**
* Created by k.shandurenko on 22.02.2021
*/
public class EntityAbstractArrow extends ObjectEntity implements Projectile {
private final static byte CRITICAL_BIT = 0x01;

View File

@ -7,9 +7,6 @@ import net.minestom.server.utils.Position;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Created by k.shandurenko on 22.02.2021
*/
public class EntityArrow extends EntityAbstractArrow {
public EntityArrow(@Nullable Entity shooter, @NotNull Position spawnPosition) {

View File

@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Created by k.shandurenko on 22.02.2021
*/
public class EntitySpectralArrow extends EntityAbstractArrow {
public EntitySpectralArrow(@Nullable Entity shooter, @NotNull Position spawnPosition) {

View File

@ -13,9 +13,6 @@ import net.minestom.server.entity.type.projectile.EntitySpectralArrow;
import java.util.concurrent.ThreadLocalRandom;
/**
* Created by k.shandurenko on 22.02.2021
*/
public class ShootCommand extends Command {
public ShootCommand() {