Skip to content

Commit

Permalink
missed a nullable removal
Browse files Browse the repository at this point in the history
  • Loading branch information
RoboMWM committed Mar 2, 2017
1 parent 5884e7b commit 92f7328
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
import org.bukkit.util.Vector;
import to.us.tf.DeathSpectating.DeathSpectating;

import javax.annotation.Nullable;

/**
* Created on 2/15/2017.
* @author RoboMWM
Expand All @@ -21,7 +19,7 @@ public class SpectateTask extends BukkitRunnable
private long ticks;
private Vector vector;

public SpectateTask(Player player, long ticks, @Nullable Entity killer, DeathSpectating deathSpectating)
public SpectateTask(Player player, long ticks, Entity killer, DeathSpectating deathSpectating)
{
this.player = player;
this.ticks = ticks;
Expand Down

0 comments on commit 92f7328

Please sign in to comment.