Debugging to figure out why more than one stick isn't being loaded.

This commit is contained in:
graywolf336
2014-03-14 15:44:19 -05:00
parent 737a7e35e2
commit 2778c79150
3 changed files with 15 additions and 3 deletions

View File

@ -4,7 +4,7 @@ package com.graywolf336.jail.beans;
* Represents a Jail Stick, contains all the information.
*
* @author graywolf336
* @version 1.0.0
* @version 1.0.1
* @since 3.0.0
*
*/
@ -29,4 +29,9 @@ public class Stick {
public long getTime() {
return this.time;
}
@Override
public String toString() {
return time + "," + jail + "," + reason;
}
}