Remove PaginatedCommand

This commit is contained in:
Eric Stokes 2011-11-26 15:20:08 -07:00
parent 03424165a4
commit 792d2ce5e6

View File

@ -1,29 +0,0 @@
/******************************************************************************
* Multiverse 2 Copyright (c) the Multiverse Team 2011. *
* Multiverse 2 is licensed under the BSD License. *
* For more information please check the README.md file included *
* with this project. *
******************************************************************************/
package com.onarandombox.MultiverseCore.commands;
import com.onarandombox.MultiverseCore.MultiverseCore;
import org.bukkit.command.CommandSender;
/**
* Multiverse 2
*
* @author fernferret
*/
public abstract class PaginatedCommand extends MultiverseCommand {
private int linesToShow = 9;
public PaginatedCommand(MultiverseCore plugin) {
super(plugin);
}
protected void displayPage(CommandSender s, int pageNum, String filter) {
}
}