We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c19a926 commit c553b91Copy full SHA for c553b91
src/main/java/io/appium/java_client/service/local/AppiumDriverLocalService.java
@@ -108,7 +108,7 @@ public AppiumDriverLocalService withBasePath(String basePath) {
108
LOG.warn("Base Path cannot be Empty or Blank -- ignoring the basepath configuration");
109
return null;
110
}
111
- return (basePath.endsWith("/") ? basePath : basePath + "/");
+ return basePath.endsWith("/") ? basePath : basePath + "/";
112
113
114
public String getBasePath() {
0 commit comments