Skip to content
This repository has been archived by the owner on Nov 23, 2021. It is now read-only.

Commit

Permalink
Refactor to my own personal package
Browse files Browse the repository at this point in the history
`com.destroystokyo` is being going to be retired eventually and this
project never really belonged in that namespace anyway.
  • Loading branch information
Zach Brown committed Oct 1, 2018
1 parent b4729b7 commit 7a8b409
Show file tree
Hide file tree
Showing 68 changed files with 138 additions and 138 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery;
package io.zachbr.debuggery;

import com.destroystokyo.debuggery.commands.*;
import com.destroystokyo.debuggery.commands.base.CommandBase;
import com.destroystokyo.debuggery.reflection.ReflectionUtil;
import com.destroystokyo.debuggery.reflection.types.TypeHandler;
import io.zachbr.debuggery.commands.*;
import io.zachbr.debuggery.commands.base.CommandBase;
import io.zachbr.debuggery.reflection.ReflectionUtil;
import io.zachbr.debuggery.reflection.types.TypeHandler;
import org.bukkit.plugin.java.JavaPlugin;

import java.util.*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.commands;
package io.zachbr.debuggery.commands;

import com.destroystokyo.debuggery.commands.base.CommandReflection;
import io.zachbr.debuggery.commands.base.CommandReflection;
import org.bukkit.block.Block;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.commands;
package io.zachbr.debuggery.commands;

import com.destroystokyo.debuggery.commands.base.CommandReflection;
import io.zachbr.debuggery.commands.base.CommandReflection;
import org.bukkit.Chunk;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.commands;
package io.zachbr.debuggery.commands;

import com.destroystokyo.debuggery.Debuggery;
import com.destroystokyo.debuggery.commands.base.CommandBase;
import io.zachbr.debuggery.Debuggery;
import io.zachbr.debuggery.commands.base.CommandBase;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.commands;
package io.zachbr.debuggery.commands;

import com.destroystokyo.debuggery.commands.base.CommandReflection;
import com.destroystokyo.debuggery.util.PlatformUtil;
import io.zachbr.debuggery.commands.base.CommandReflection;
import io.zachbr.debuggery.util.PlatformUtil;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.commands;
package io.zachbr.debuggery.commands;

import com.destroystokyo.debuggery.commands.base.CommandReflection;
import io.zachbr.debuggery.commands.base.CommandReflection;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.commands;
package io.zachbr.debuggery.commands;

import com.destroystokyo.debuggery.commands.base.CommandReflection;
import io.zachbr.debuggery.commands.base.CommandReflection;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.commands;
package io.zachbr.debuggery.commands;

import com.destroystokyo.debuggery.commands.base.CommandReflection;
import io.zachbr.debuggery.commands.base.CommandReflection;
import org.bukkit.Bukkit;
import org.bukkit.Server;
import org.bukkit.command.Command;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.commands;
package io.zachbr.debuggery.commands;

import com.destroystokyo.debuggery.commands.base.CommandReflection;
import io.zachbr.debuggery.commands.base.CommandReflection;
import org.bukkit.World;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.commands.base;
package io.zachbr.debuggery.commands.base;

import com.google.common.collect.Lists;
import org.bukkit.ChatColor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.commands.base;

import com.destroystokyo.debuggery.reflection.ReflectionChain;
import com.destroystokyo.debuggery.reflection.ReflectionUtil;
import com.destroystokyo.debuggery.reflection.types.InputException;
import com.destroystokyo.debuggery.reflection.types.TypeHandler;
import com.destroystokyo.debuggery.util.FancyChatException;
import com.destroystokyo.debuggery.util.PlatformUtil;
package io.zachbr.debuggery.commands.base;

import io.zachbr.debuggery.reflection.ReflectionChain;
import io.zachbr.debuggery.reflection.ReflectionUtil;
import io.zachbr.debuggery.reflection.types.InputException;
import io.zachbr.debuggery.reflection.types.TypeHandler;
import io.zachbr.debuggery.util.FancyChatException;
import io.zachbr.debuggery.util.PlatformUtil;
import org.apache.commons.lang.Validate;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection;
package io.zachbr.debuggery.reflection;

import com.destroystokyo.debuggery.reflection.types.InputException;
import com.destroystokyo.debuggery.reflection.types.TypeHandler;
import io.zachbr.debuggery.reflection.types.InputException;
import io.zachbr.debuggery.reflection.types.TypeHandler;
import org.bukkit.ChatColor;
import org.bukkit.command.CommandSender;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection;
package io.zachbr.debuggery.reflection;

import org.apache.commons.lang.Validate;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types;
package io.zachbr.debuggery.reflection.types;

import com.destroystokyo.debuggery.reflection.types.handlers.base.Handler;
import com.destroystokyo.debuggery.reflection.types.handlers.input.*;
import com.destroystokyo.debuggery.reflection.types.handlers.output.*;
import com.destroystokyo.debuggery.util.DebugLogger;
import io.zachbr.debuggery.reflection.types.handlers.base.Handler;
import io.zachbr.debuggery.reflection.types.handlers.input.*;
import io.zachbr.debuggery.reflection.types.handlers.output.*;
import io.zachbr.debuggery.util.DebugLogger;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types;
package io.zachbr.debuggery.reflection.types;

import javax.annotation.Nonnull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types;
package io.zachbr.debuggery.reflection.types;

import com.destroystokyo.debuggery.reflection.types.handlers.base.*;
import com.destroystokyo.debuggery.util.DebugLogger;
import io.zachbr.debuggery.reflection.types.handlers.base.*;
import io.zachbr.debuggery.util.DebugLogger;
import org.apache.commons.lang.NotImplementedException;
import org.apache.commons.lang.Validate;
import org.bukkit.command.CommandSender;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.base;
package io.zachbr.debuggery.reflection.types.handlers.base;

import javax.annotation.Nonnull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.base;
package io.zachbr.debuggery.reflection.types.handlers.base;

import org.bukkit.command.CommandSender;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.base;
package io.zachbr.debuggery.reflection.types.handlers.base;

/**
* An {@link IHandler} that handles input for sub-types as well as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.base;
package io.zachbr.debuggery.reflection.types.handlers.base;

import javax.annotation.Nullable;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.input;
package io.zachbr.debuggery.reflection.types.handlers.input;

import com.destroystokyo.debuggery.reflection.types.handlers.base.IPolymorphicHandler;
import io.zachbr.debuggery.reflection.types.handlers.base.IPolymorphicHandler;
import org.bukkit.Bukkit;
import org.bukkit.Material;
import org.bukkit.block.data.BlockData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.input;
package io.zachbr.debuggery.reflection.types.handlers.input;

import com.destroystokyo.debuggery.reflection.types.handlers.base.IHandler;
import io.zachbr.debuggery.reflection.types.handlers.base.IHandler;
import org.bukkit.command.CommandSender;

import javax.annotation.Nonnull;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.input;
package io.zachbr.debuggery.reflection.types.handlers.input;

import com.destroystokyo.debuggery.reflection.types.handlers.base.IHandler;
import io.zachbr.debuggery.reflection.types.handlers.base.IHandler;
import org.bukkit.command.CommandSender;

import javax.annotation.Nonnull;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.input;
package io.zachbr.debuggery.reflection.types.handlers.input;

import com.destroystokyo.debuggery.reflection.types.TypeHandler;
import com.destroystokyo.debuggery.reflection.types.handlers.base.IPolymorphicHandler;
import io.zachbr.debuggery.reflection.types.TypeHandler;
import io.zachbr.debuggery.reflection.types.handlers.base.IPolymorphicHandler;
import org.apache.commons.lang.NotImplementedException;
import org.bukkit.command.CommandSender;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.input;
package io.zachbr.debuggery.reflection.types.handlers.input;

import com.destroystokyo.debuggery.reflection.types.handlers.base.IHandler;
import io.zachbr.debuggery.reflection.types.handlers.base.IHandler;
import org.bukkit.Difficulty;
import org.bukkit.command.CommandSender;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.input;
package io.zachbr.debuggery.reflection.types.handlers.input;

import com.destroystokyo.debuggery.reflection.types.handlers.base.IHandler;
import com.destroystokyo.debuggery.util.PlatformUtil;
import io.zachbr.debuggery.reflection.types.handlers.base.IHandler;
import io.zachbr.debuggery.util.PlatformUtil;
import org.bukkit.Location;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Entity;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.input;
package io.zachbr.debuggery.reflection.types.handlers.input;

import com.destroystokyo.debuggery.reflection.types.handlers.base.IPolymorphicHandler;
import io.zachbr.debuggery.reflection.types.handlers.base.IPolymorphicHandler;
import org.bukkit.command.CommandSender;

import javax.annotation.Nonnull;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.input;
package io.zachbr.debuggery.reflection.types.handlers.input;

import com.destroystokyo.debuggery.reflection.types.handlers.base.IHandler;
import io.zachbr.debuggery.reflection.types.handlers.base.IHandler;
import org.bukkit.GameMode;
import org.bukkit.command.CommandSender;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.input;
package io.zachbr.debuggery.reflection.types.handlers.input;

import com.destroystokyo.debuggery.reflection.types.handlers.base.IHandler;
import io.zachbr.debuggery.reflection.types.handlers.base.IHandler;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.input;
package io.zachbr.debuggery.reflection.types.handlers.input;

import com.destroystokyo.debuggery.reflection.types.handlers.base.IHandler;
import io.zachbr.debuggery.reflection.types.handlers.base.IHandler;
import org.bukkit.command.CommandSender;
import org.bukkit.inventory.ItemStack;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.input;
package io.zachbr.debuggery.reflection.types.handlers.input;

import com.destroystokyo.debuggery.reflection.types.handlers.base.IHandler;
import io.zachbr.debuggery.reflection.types.handlers.base.IHandler;
import org.bukkit.*;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* along with Debuggery. If not, see <http://www.gnu.org/licenses/>.
*/

package com.destroystokyo.debuggery.reflection.types.handlers.input;
package io.zachbr.debuggery.reflection.types.handlers.input;

import com.destroystokyo.debuggery.reflection.types.handlers.base.IHandler;
import io.zachbr.debuggery.reflection.types.handlers.base.IHandler;
import org.bukkit.Material;
import org.bukkit.command.CommandSender;
import org.bukkit.material.MaterialData;
Expand Down
Loading

0 comments on commit 7a8b409

Please sign in to comment.