From 528ee5275468cc5a6135811829f49b9294409c25 Mon Sep 17 00:00:00 2001 From: CrushedPixel Date: Thu, 23 Jul 2015 12:34:30 +0200 Subject: [PATCH] Added proper toString Method to TimestampValue for easier debugging --- .../eu/crushedpixel/replaymod/holders/TimestampValue.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/eu/crushedpixel/replaymod/holders/TimestampValue.java b/src/main/java/eu/crushedpixel/replaymod/holders/TimestampValue.java index 73cfa0b2..acf62815 100644 --- a/src/main/java/eu/crushedpixel/replaymod/holders/TimestampValue.java +++ b/src/main/java/eu/crushedpixel/replaymod/holders/TimestampValue.java @@ -29,4 +29,9 @@ public class TimestampValue implements KeyframeValue { public Interpolation getCubicInterpolator() { return new GenericSplineInterpolation(); } + + @Override + public String toString() { + return "TimestampValue: "+asInt(); + } }