Skip to content

Commit 3dd48dd

Browse files
committed
move options classes into respective platform directories
1 parent 41c386d commit 3dd48dd

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

src/main/java/io/appium/java_client/remote/AndroidMobileOptions.java renamed to src/main/java/io/appium/java_client/android/AndroidMobileOptions.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@
1414
* limitations under the License.
1515
*/
1616

17-
package io.appium.java_client.remote;
17+
package io.appium.java_client.android;
1818

19+
import io.appium.java_client.remote.MobileOptions;
20+
import io.appium.java_client.remote.MobilePlatform;
1921
import org.openqa.selenium.Capabilities;
2022
import org.openqa.selenium.remote.CapabilityType;
2123

src/main/java/io/appium/java_client/remote/IOSMobileOptions.java renamed to src/main/java/io/appium/java_client/ios/IOSMobileOptions.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@
1414
* limitations under the License.
1515
*/
1616

17-
package io.appium.java_client.remote;
17+
package io.appium.java_client.ios;
1818

19+
import io.appium.java_client.remote.MobileOptions;
20+
import io.appium.java_client.remote.MobilePlatform;
1921
import org.openqa.selenium.Capabilities;
2022
import org.openqa.selenium.remote.CapabilityType;
2123

9.91 KB
Binary file not shown.

src/test/java/io/appium/java_client/android/AndroidOptionsTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package io.appium.java_client.android;
1818

19-
import io.appium.java_client.remote.AndroidMobileOptions;
2019
import io.appium.java_client.remote.AutomationName;
2120
import io.appium.java_client.remote.MobilePlatform;
2221
import org.junit.Test;

src/test/java/io/appium/java_client/ios/IOSOptionsTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
package io.appium.java_client.ios;
1818

1919
import io.appium.java_client.remote.AutomationName;
20-
import io.appium.java_client.remote.IOSMobileOptions;
2120
import io.appium.java_client.remote.MobilePlatform;
2221
import org.junit.Test;
2322
import org.openqa.selenium.MutableCapabilities;

0 commit comments

Comments
 (0)