Skip to content

Commit bd2fc34

Browse files
committed
[java] Fixing variable name (Cyrillic letter с looks exactly like Latin letter c)
1 parent ac56ef5 commit bd2fc34

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<?> сlassClazz = Class.forName(clazz, true, Thread.currentThread().getContextClassLoader());
18-
Method create = сlassClazz.getMethod("create", org.openqa.selenium.grid.config.Config.class);
17+
Class<?> classClazz = Class.forName(clazz, true, Thread.currentThread().getContextClassLoader());
18+
Method create = classClazz.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)