Skip to content

Commit 85a4243

Browse files
committed
fix spacing in service classes
1 parent 9f546ae commit 85a4243

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

java/src/org/openqa/selenium/chrome/ChromeDriverService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ protected void loadSystemProperties() {
285285
protected List<String> createArgs() {
286286
List<String> args = new ArrayList<>();
287287
args.add(String.format("--port=%d", getPort()));
288-
288+
289289
// Readable timestamp and append logs only work if log path is specified in args
290290
// Cannot use logOutput because goog:loggingPrefs requires --log-path get sent
291291
if (getLogFile() != null) {

java/src/org/openqa/selenium/edge/EdgeDriverService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ protected void loadSystemProperties() {
279279
protected List<String> createArgs() {
280280
List<String> args = new ArrayList<>();
281281
args.add(String.format("--port=%d", getPort()));
282-
282+
283283
// Readable timestamp and append logs only work if log path is specified in args
284284
// Cannot use logOutput because goog:loggingPrefs requires --log-path get sent
285285
if (getLogFile() != null) {

java/src/org/openqa/selenium/remote/service/DriverService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ public DS build() {
504504
if (port == 0) {
505505
port = PortProber.findFreePort();
506506
}
507-
507+
508508
if(Locale.getDefault(Locale.Category.FORMAT).getLanguage().equals("ar")) {
509509
throw new NumberFormatException(String.format("Couldn't format the port numbers because the System Language is arabic: \"--port=%d\","
510510
+ " please make sure to add the required arguments \"-Duser.language=en -Duser.region=US\" to your JVM,"

0 commit comments

Comments
 (0)