Skip to content

Commit

Permalink
Now using unomodding.canary package.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamierocks committed Oct 8, 2014
1 parent c6b04dc commit 79fb02b
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>unomodding.minecraft</groupId>
<groupId>unomodding.canary</groupId>
<artifactId>playtimelimiter</artifactId>

<name>PlayTimeLimiter</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
* To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/.
*/
package unomodding.minecraft.playtimelimiter;
package unomodding.canary.playtimelimiter;

import java.util.List;

Expand All @@ -15,7 +15,7 @@
import net.canarymod.commandsys.CommandListener;
import net.canarymod.commandsys.TabComplete;
import net.canarymod.commandsys.TabCompleteHelper;
import unomodding.minecraft.playtimelimiter.exceptions.UnknownPlayerException;
import unomodding.canary.playtimelimiter.exceptions.UnknownPlayerException;

public class PlayTimeCommands implements CommandListener {
private final PlayTimeLimiter plugin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
* To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/.
*/
package unomodding.minecraft.playtimelimiter;
package unomodding.canary.playtimelimiter;

import java.io.BufferedWriter;
import java.io.File;
Expand All @@ -20,10 +20,10 @@
import net.canarymod.chat.TextFormat;
import net.canarymod.commandsys.CommandDependencyException;
import net.canarymod.plugin.Plugin;
import unomodding.canary.playtimelimiter.exceptions.UnknownPlayerException;
import unomodding.canary.playtimelimiter.threads.PlayTimeCheckerTask;
import unomodding.canary.playtimelimiter.threads.PlayTimeSaverTask;

import unomodding.minecraft.playtimelimiter.exceptions.UnknownPlayerException;
import unomodding.minecraft.playtimelimiter.threads.PlayTimeCheckerTask;
import unomodding.minecraft.playtimelimiter.threads.PlayTimeSaverTask;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
* To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/.
*/
package unomodding.minecraft.playtimelimiter;
package unomodding.canary.playtimelimiter;

import java.io.File;

Expand All @@ -14,8 +14,8 @@
import net.canarymod.hook.player.DisconnectionHook;
import net.canarymod.hook.system.ServerShutdownHook;
import net.canarymod.plugin.PluginListener;
import unomodding.minecraft.playtimelimiter.utils.FileUtils;
import unomodding.minecraft.playtimelimiter.utils.Timestamper;
import unomodding.canary.playtimelimiter.utils.FileUtils;
import unomodding.canary.playtimelimiter.utils.Timestamper;

public class PlayTimeListener implements PluginListener {
private final PlayTimeLimiter plugin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
* To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/.
*/
package unomodding.minecraft.playtimelimiter.exceptions;
package unomodding.canary.playtimelimiter.exceptions;

public class UnknownPlayerException extends Exception {
private static final long serialVersionUID = -5987543214085051018L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
* This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
* To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/.
*/
package unomodding.minecraft.playtimelimiter.threads;
package unomodding.canary.playtimelimiter.threads;

import java.io.File;
import java.util.TimerTask;

import net.canarymod.Canary;
import net.canarymod.api.entity.living.humanoid.Player;
import net.canarymod.chat.TextFormat;
import unomodding.minecraft.playtimelimiter.PlayTimeLimiter;
import unomodding.minecraft.playtimelimiter.utils.FileUtils;
import unomodding.minecraft.playtimelimiter.utils.Timestamper;
import unomodding.canary.playtimelimiter.PlayTimeLimiter;
import unomodding.canary.playtimelimiter.utils.FileUtils;
import unomodding.canary.playtimelimiter.utils.Timestamper;

public class PlayTimeCheckerTask extends TimerTask {
private final PlayTimeLimiter plugin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
* This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
* To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/.
*/
package unomodding.minecraft.playtimelimiter.threads;
package unomodding.canary.playtimelimiter.threads;

import java.util.TimerTask;

import unomodding.minecraft.playtimelimiter.PlayTimeLimiter;
import unomodding.canary.playtimelimiter.PlayTimeLimiter;

public class PlayTimeSaverTask extends TimerTask {
private final PlayTimeLimiter plugin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
* To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/.
*/
package unomodding.minecraft.playtimelimiter.utils;
package unomodding.canary.playtimelimiter.utils;

import java.io.BufferedWriter;
import java.io.File;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
* To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/.
*/
package unomodding.minecraft.playtimelimiter.utils;
package unomodding.canary.playtimelimiter.utils;

import java.text.SimpleDateFormat;
import java.util.Date;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/Canary.inf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name=PlayTimeLimiter
main-class=unomodding.minecraft.playtimelimiter.PlayTimeLimiter
main-class=unomodding.canary.playtimelimiter.PlayTimeLimiter
author=UnoModding
version=0.1

0 comments on commit 79fb02b

Please sign in to comment.