Skip to content

Commit 92f7328

Browse files
committed
missed a nullable removal
1 parent 5884e7b commit 92f7328

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/to/us/tf/DeathSpectating/tasks/SpectateTask.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
import org.bukkit.util.Vector;
77
import to.us.tf.DeathSpectating.DeathSpectating;
88

9-
import javax.annotation.Nullable;
10-
119
/**
1210
* Created on 2/15/2017.
1311
* @author RoboMWM
@@ -21,7 +19,7 @@ public class SpectateTask extends BukkitRunnable
2119
private long ticks;
2220
private Vector vector;
2321

24-
public SpectateTask(Player player, long ticks, @Nullable Entity killer, DeathSpectating deathSpectating)
22+
public SpectateTask(Player player, long ticks, Entity killer, DeathSpectating deathSpectating)
2523
{
2624
this.player = player;
2725
this.ticks = ticks;

0 commit comments

Comments
 (0)