CLOUDSTACK-8669: making StringUtils.getDefaultCharset protected

made this protected as its only use is in the Test file.
This commit is contained in:
Rajani Karuturi 2015-08-13 17:39:44 +05:30
parent 55ae168cdd
commit a65339ff1b

View File

@ -52,7 +52,7 @@ public class StringUtils {
return Charset.isSupported(UTF8);
}
public static Charset getDefaultCharset() {
protected static Charset getDefaultCharset() {
return Charset.defaultCharset();
}