Skip to content

Commit c553b91

Browse files
Update src/main/java/io/appium/java_client/service/local/AppiumDriverLocalService.java
Removing redundant parenthesis Co-authored-by: Valery Yatsynovich <valfirst@yandex.ru>
1 parent c19a926 commit c553b91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/appium/java_client/service/local/AppiumDriverLocalService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public AppiumDriverLocalService withBasePath(String basePath) {
108108
LOG.warn("Base Path cannot be Empty or Blank -- ignoring the basepath configuration");
109109
return null;
110110
}
111-
return (basePath.endsWith("/") ? basePath : basePath + "/");
111+
return basePath.endsWith("/") ? basePath : basePath + "/";
112112
}
113113

114114
public String getBasePath() {

0 commit comments

Comments
 (0)