Improved readability toString function result for Numbered filter

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/accounting-analytics@126314 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2016-03-25 18:16:31 +00:00
parent cb956fb1de
commit 2ef70e479f
1 changed files with 3 additions and 2 deletions

View File

@ -112,8 +112,9 @@ public class NumberedFilter extends Filter {
@Override
public String toString(){
return String.format("%s, %d, %s}",
super.toString().replace(" }", ""), d.longValue(), orderingProperty);
return String.format("%s, %s : %d}",
super.toString().replace(" }", ""),
orderingProperty, d.longValue());
}
}