Skip to content

Commit ccd13d6

Browse files
committed
[java] Following Java naming convention
1 parent f64260a commit ccd13d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/server/src/org/openqa/selenium/grid/config/ClassCreation.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ static <X> X callCreateMethod(String clazz, Class<X> typeOfClass, Config configT
1414
try {
1515
// Use the context class loader since this is what the `--ext`
1616
// flag modifies.
17-
Class<?> ClassClazz = Class.forName(clazz, true, Thread.currentThread().getContextClassLoader());
18-
Method create = ClassClazz.getMethod("create", org.openqa.selenium.grid.config.Config.class);
17+
Class<?> сlassClazz = Class.forName(clazz, true, Thread.currentThread().getContextClassLoader());
18+
Method create = сlassClazz.getMethod("create", org.openqa.selenium.grid.config.Config.class);
1919

2020
if (!Modifier.isStatic(create.getModifiers())) {
2121
throw new IllegalArgumentException(String.format(

0 commit comments

Comments
 (0)