1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 08:18:52 -05:00

Remove unnecessary toString()

This commit is contained in:
Reinhard Pointner 2017-03-01 01:35:09 +08:00
parent 45bcfbe3f6
commit 342762427f

View File

@ -736,7 +736,7 @@ public class MediaBindingBean {
@Define("az")
public String getSortInitial() {
try {
return sortInitial(getCollection().toString());
return sortInitial(getCollection());
} catch (Exception e) {
return sortInitial(getName());
}