Skip to content

Commit

Permalink
Put UnsupportedListener at the package level.
Browse files Browse the repository at this point in the history
  • Loading branch information
aadnk committed Oct 29, 2012
1 parent cbf4def commit f9c0f21
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.logging.Level;

import org.bukkit.plugin.Plugin;

Expand Down Expand Up @@ -113,10 +112,6 @@ void setNullPacketListener(NullPacketListener nullPacketListener) {
PacketListener getNullPacketListener() {
return nullPacketListener;
}

private String getPluginName() {
return PacketAdapter.getPluginName(listener);
}

/**
* Retrieve the plugin associated with this async listener.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import java.util.ArrayList;
import java.util.Set;

import com.comphenix.protocol.Packets;
import com.comphenix.protocol.injector.ListenerInvoker;
import com.comphenix.protocol.injector.player.NetworkFieldInjector.FakePacket;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* @author Kristian
*/
public class UnsupportedListener {
class UnsupportedListener {
private String message;
private int[] packets;

Expand Down

0 comments on commit f9c0f21

Please sign in to comment.