Improve CommunityDatabaseItem.toString()

This commit is contained in:
xynngh 2019-07-21 21:08:27 +04:00
parent 0f5b7e3509
commit 6dc025a7cc
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public class CommunityDatabaseItem {
", negativeRatingsCount=" + negativeRatingsCount +
", neutralRatingsCount=" + neutralRatingsCount +
", unknownData=" + unknownData +
", category=" + NumberCategory.getById(category) +
", category=" + NumberCategory.getById(category) + " (" + category + ")" +
'}';
}