1
0

Camcel-case internal names

This commit is contained in:
Gary Gregory
2023-11-19 11:54:48 -05:00
parent 533edd2759
commit 812631cb9e

View File

@@ -226,10 +226,10 @@ public class LogSource {
*/ */
static public void setLogImplementation(final String className) throws LinkageError, SecurityException { static public void setLogImplementation(final String className) throws LinkageError, SecurityException {
try { try {
final Class logclass = Class.forName(className); final Class logClass = Class.forName(className);
final Class[] argtypes = new Class[1]; final Class[] argTypes = new Class[1];
argtypes[0] = "".getClass(); argTypes[0] = "".getClass();
logImplctor = logclass.getConstructor(argtypes); logImplctor = logClass.getConstructor(argTypes);
} catch (final Throwable t) { } catch (final Throwable t) {
logImplctor = null; logImplctor = null;
} }