Remove protected-modifier in final class

This commit is contained in:
Anosh D. Ullenius
2022-06-17 20:26:22 +02:00
parent 2b30d9dab0
commit 245f5386ce
4 changed files with 33 additions and 33 deletions
@@ -187,7 +187,7 @@ public final class StringUtil {
/**
* Helper function for the various {@code join} methods.
*/
protected static String join (Object[] values, String separator, boolean escape)
private static String join(Object[] values, String separator, boolean escape)
{
StringBuilder buf = new StringBuilder();
int vlength = values.length;
@@ -202,5 +202,5 @@ public final class StringUtil {
}
/** Used by {@link #hexlate}. */
protected static final String XLATE = "0123456789abcdef";
private static final String XLATE = "0123456789abcdef";
}