All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.electrum.vas.Utils Maven / Gradle / Ivy

There is a newer version: 3.19.0
Show newest version
package io.electrum.vas;

public class Utils {

   public static String toIndentedString(Object o) {
      if (o == null) {
         return "null";
      }
      return o.toString().replace("\n", "\n    ");
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy