Remove unnecessary toString()

This commit is contained in:
Reinhard Pointner 2017-03-01 01:35:09 +08:00
parent 45bcfbe3f6
commit 342762427f
1 changed files with 1 additions and 1 deletions

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());
}