Camcel-case internal names
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user