mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-17 06:45:06 -05:00
* remove debug logging
This commit is contained in:
parent
483d5d3e76
commit
a8f31ffc9c
@ -204,7 +204,6 @@ public class MediaBindingBean {
|
|||||||
|
|
||||||
@Define("primaryTitle")
|
@Define("primaryTitle")
|
||||||
public String getOfficialTitle() throws Exception {
|
public String getOfficialTitle() throws Exception {
|
||||||
System.out.println(getSeriesObject());
|
|
||||||
if (getSeriesObject() instanceof TheTVDBSearchResult) {
|
if (getSeriesObject() instanceof TheTVDBSearchResult) {
|
||||||
return WebServices.TheTVDB.getSeriesInfo((TheTVDBSearchResult) getSeriesObject(), Locale.ENGLISH).getName();
|
return WebServices.TheTVDB.getSeriesInfo((TheTVDBSearchResult) getSeriesObject(), Locale.ENGLISH).getName();
|
||||||
}
|
}
|
||||||
@ -792,7 +791,6 @@ public class MediaBindingBean {
|
|||||||
Iterator<?> itr = c.iterator();
|
Iterator<?> itr = c.iterator();
|
||||||
for (int i = 0; itr.hasNext(); i++) {
|
for (int i = 0; itr.hasNext(); i++) {
|
||||||
Object next = itr.next();
|
Object next = itr.next();
|
||||||
System.out.println(String.format("%s VS %s", System.identityHashCode(o), System.identityHashCode(next)));
|
|
||||||
if (o == next)
|
if (o == next)
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user