Пример #1
0
 /**
  * Convert the given object to string with each line indented by 4 spaces (except the first line).
  */
 private String toIndentedString(java.lang.Object o) {
   if (o == null) {
     return "null";
   }
   return o.toString().replace("\n", "\n    ");
 }