Skip to content

Commit

Permalink
chore(android): delay "uncaughtException" event deprecations to 11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jquick-axway committed May 11, 2021
1 parent 812094d commit ce19398
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class TiExceptionHandler implements Handler.Callback, KrollExceptionHandl
public static final String ERROR_STACK = "stack";
public static final String ERROR_NATIVESTACK = "nativeStack";

// DEPRECATED in 9.0.0, REMOVE 10.0.0
// DEPRECATED in 9.0.0, REMOVE 11.0.0
public static final String ERROR_LINEOFFSET = "lineOffset";
public static final String ERROR_JS_STACK = "javascriptStack";
public static final String ERROR_JAVA_STACK = "javaStack";
Expand All @@ -78,7 +78,7 @@ public static KrollDict getErrorDict(ExceptionMessage error)
dict.put(ERROR_STACK, error.jsStack);
dict.put(ERROR_NATIVESTACK, error.javaStack);

// DEPRECATED in 9.0.0, REMOVE 10.0.0
// DEPRECATED in 9.0.0, REMOVE 11.0.0
dict.put(ERROR_LINEOFFSET, error.lineOffset);
dict.put(ERROR_JS_STACK, error.jsStack);
dict.put(ERROR_JAVA_STACK, error.javaStack);
Expand Down
8 changes: 4 additions & 4 deletions apidoc/Titanium/App/App.yml
Original file line number Diff line number Diff line change
Expand Up @@ -309,22 +309,22 @@ events:
type: String
platforms: [android]
- name: lineOffset
summary: The offset on the line where the error occurred.
summary: The offset on the line where the error occurred. (Deprecated since 9.0.0. Use `column` instead.)
type: Number
deprecated:
since: "9.0.0"
notes: Use `column` property for cross-platform parity.
platforms: [android]
- name: jsStack
summary: The javascript stack trace of the exception.
- name: javascriptStack
summary: The javascript stack trace of the exception. (Deprecated since 9.0.0. Use `stack` instead.)
type: String
since: "8.0.0"
deprecated:
since: "9.0.0"
notes: Use `stack` property for cross-platform parity.
platforms: [android]
- name: javaStack
summary: The java stack trace of the exception.
summary: The java stack trace of the exception. (Deprecated since 9.0.0. Use `nativeStack` instead.)
type: String
since: "8.0.0"
deprecated:
Expand Down

0 comments on commit ce19398

Please sign in to comment.