Skip to content

Commit eceee71

Browse files
authored
fix(gradle): Fix gradle warning. (#139)
1 parent 58248a5 commit eceee71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AndroidSDKCore/src/main/java/com/leanplum/internal/LeanplumUIEditorWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ protected LeanplumUIEditorWrapper() {
5454
if (clazz != null) {
5555
Method method = null;
5656
try {
57-
method = clazz.getMethod("getInstance", null);
57+
method = clazz.getMethod("getInstance");
5858
} catch (Throwable t) {
5959
Util.handleException(t);
6060
}

0 commit comments

Comments
 (0)