in src/main/java/com/microsoft/store/partnercenter/models/query/SimpleQuery.java [71:86]
public String toString()
{
StringBuilder stringRepresentation = new StringBuilder();
if (this.getSort() != null)
{
stringRepresentation.append(this.getSort().toString() + "/n");
}
if (this.getFilter() != null)
{
stringRepresentation.append(this.getFilter().toString() + "\n");
}
String result = stringRepresentation.toString();
return result == null || result.isEmpty() ? super.toString() : result;
}