Skip to content

Commit

Permalink
refactor(android): remove deprecated property on tcp error callback
Browse files Browse the repository at this point in the history
    This removes the errorCode property that has been deprecated since sdk
    3.1.0

    BREAKING CHANGE: Removes deprecated tcp error callback errorCode property
  • Loading branch information
sgtcoolguy committed Dec 9, 2019
1 parent ff45299 commit 7e405aa
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,6 @@ private KrollDict buildErrorCallbackArgs(String error, int errorCode)
KrollDict callbackArgs = new KrollDict();
callbackArgs.put("socket", this);
callbackArgs.putCodeAndMessage(errorCode, error);
callbackArgs.put("errorCode", errorCode);

return callbackArgs;
}
Expand Down

0 comments on commit 7e405aa

Please sign in to comment.