io.electrum.vas.Utils Maven / Gradle / Ivy
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