Skip to content

Commit 454a74c

Browse files
Changed protected constructor to public constructor
1 parent 5afab90 commit 454a74c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/java/io/appium/java_client/imagecomparison/ComparisonResult.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public abstract class ComparisonResult {
3434

3535
@Getter(AccessLevel.PROTECTED) private final Map<String, Object> commandResult;
3636

37-
protected ComparisonResult(Map<String, Object> commandResult) {
37+
public ComparisonResult(Map<String, Object> commandResult) {
3838
this.commandResult = commandResult;
3939
}
4040

src/main/java/io/appium/java_client/pagefactory/interceptors/InterceptorOfAListOfElements.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
public abstract class InterceptorOfAListOfElements implements MethodCallListener {
3030
protected final ElementLocator locator;
3131

32-
protected InterceptorOfAListOfElements(@Nullable ElementLocator locator) {
32+
public InterceptorOfAListOfElements(@Nullable ElementLocator locator) {
3333
this.locator = locator;
3434
}
3535

src/main/java/io/appium/java_client/remote/options/SystemScript.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public abstract class SystemScript<T extends SystemScript<T>> extends BaseMapOpt
2323
protected SystemScript() {
2424
}
2525

26-
protected SystemScript(Map<String, Object> options) {
26+
public SystemScript(Map<String, Object> options) {
2727
super(options);
2828
}
2929

0 commit comments

Comments
 (0)