Skip to content

Commit b4460f0

Browse files
fix: Make interfaces public to fix decorator creation (#1644)
1 parent 4988095 commit b4460f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/io/appium/java_client/android/HasAndroidSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
import java.time.Duration;
2323

24-
interface HasAndroidSettings extends HasSettings {
24+
public interface HasAndroidSettings extends HasSettings {
2525
/**
2626
* Set the `ignoreUnimportantViews` setting. *Android-only method*.
2727
* Sets whether Android devices should use `setCompressedLayoutHeirarchy()`

src/main/java/io/appium/java_client/ios/HasIOSSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import io.appium.java_client.HasSettings;
2020
import io.appium.java_client.Setting;
2121

22-
interface HasIOSSettings extends HasSettings {
22+
public interface HasIOSSettings extends HasSettings {
2323
/**
2424
* Set the `nativeWebTap` setting. *iOS-only method*.
2525
* Sets whether Safari/webviews should convert element taps into x/y taps.

0 commit comments

Comments
 (0)