1
0

Camcel-case internal names

This commit is contained in:
Gary Gregory
2023-11-19 11:55:11 -05:00
parent 812631cb9e
commit 539ac1cae7

View File

@@ -199,7 +199,7 @@ public class LogSource {
* Sets the log implementation/log implementation factory by class. The given class must implement {@link Log}, and provide a constructor that takes a single * Sets the log implementation/log implementation factory by class. The given class must implement {@link Log}, and provide a constructor that takes a single
* {@link String} argument (containing the name of the log). * {@link String} argument (containing the name of the log).
* *
* @param logclass class. * @param logClass class.
* @throws LinkageError if there is missing dependency. * @throws LinkageError if there is missing dependency.
* @throws ExceptionInInitializerError unexpected exception has occurred in a static initializer. * @throws ExceptionInInitializerError unexpected exception has occurred in a static initializer.
* @throws NoSuchMethodException if a matching method is not found. * @throws NoSuchMethodException if a matching method is not found.
@@ -207,11 +207,11 @@ public class LogSource {
* class loader for the current class and invocation of {@link SecurityManager#checkPackageAccess * class loader for the current class and invocation of {@link SecurityManager#checkPackageAccess
* s.checkPackageAccess()} denies access to the package of this class. * s.checkPackageAccess()} denies access to the package of this class.
*/ */
static public void setLogImplementation(final Class logclass) static public void setLogImplementation(final Class logClass)
throws LinkageError, ExceptionInInitializerError, NoSuchMethodException, SecurityException { throws LinkageError, ExceptionInInitializerError, NoSuchMethodException, SecurityException {
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);
} }
/** /**