1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* remove debug logging

This commit is contained in:
Reinhard Pointner 2013-07-14 12:14:13 +00:00
parent 483d5d3e76
commit a8f31ffc9c

View File

@ -204,7 +204,6 @@ public class MediaBindingBean {
@Define("primaryTitle")
public String getOfficialTitle() throws Exception {
System.out.println(getSeriesObject());
if (getSeriesObject() instanceof TheTVDBSearchResult) {
return WebServices.TheTVDB.getSeriesInfo((TheTVDBSearchResult) getSeriesObject(), Locale.ENGLISH).getName();
}
@ -792,7 +791,6 @@ public class MediaBindingBean {
Iterator<?> itr = c.iterator();
for (int i = 0; itr.hasNext(); i++) {
Object next = itr.next();
System.out.println(String.format("%s VS %s", System.identityHashCode(o), System.identityHashCode(next)));
if (o == next)
return i;
}