Skip to content

Commit

Permalink
fix: Make interfaces public to fix decorator creation (#1644)
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach authored Feb 9, 2022
1 parent 4988095 commit b4460f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

import java.time.Duration;

interface HasAndroidSettings extends HasSettings {
public interface HasAndroidSettings extends HasSettings {
/**
* Set the `ignoreUnimportantViews` setting. *Android-only method*.
* Sets whether Android devices should use `setCompressedLayoutHeirarchy()`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import io.appium.java_client.HasSettings;
import io.appium.java_client.Setting;

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

0 comments on commit b4460f0

Please sign in to comment.