From 1222aa11a61db8db89944d3a4f9716e98a1c2598 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Thu, 26 Jul 2012 11:09:42 +0000 Subject: [PATCH] * tested OSDB cashing and it works very well --- source/net/sourceforge/filebot/Cache.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/net/sourceforge/filebot/Cache.java b/source/net/sourceforge/filebot/Cache.java index 290184cb..39bc1f04 100644 --- a/source/net/sourceforge/filebot/Cache.java +++ b/source/net/sourceforge/filebot/Cache.java @@ -88,6 +88,12 @@ public class Cache { return false; } + + + @Override + public String toString() { + return Arrays.toString(fields); + } } }