Back to project page GlassTunes.
The source code is released under:
Apache License
If you think the Android project GlassTunes listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.glasstunes; /* ww w . j a va 2s . c om*/ public class Debug { public static final boolean LOG_CONTENT = BuildConfig.DEBUG && true; private Debug() { // no instances } public static String buildConcatString(String delimeter, String... strings) { StringBuilder builder = new StringBuilder(); boolean isFirst = true; for (String string : strings) { if (string == null) { string = "NULL"; } if (!isFirst) { builder.append(delimeter); } isFirst = false; builder.append(string); } return builder.toString(); } }