Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix merge conflict
  • Loading branch information
Manoel Aranda Neto committed Oct 25, 2019
commit 9a6245931ef2366cb14a4ab3f20664c93ca8ca30
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ private static void createsEnvelopeDirPath(SentryOptions options, Context contex
}

private static void addProcessors(SentryOptions options, Context context) {
// options.addEventProcessor(new MainEventProcessor(options));
options.addEventProcessor(new DefaultAndroidEventProcessor(context, options));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private static SentryException createSentryException(
private static List<SentryStackFrame> getStackFrames(StackTraceElement[] elements) {
List<SentryStackFrame> sentryStackFrames = new ArrayList<>();

for(StackTraceElement item : elements) {
for (StackTraceElement item : elements) {
SentryStackFrame sentryStackFrame = new SentryStackFrame();
sentryStackFrame.setModule(item.getClassName());
sentryStackFrame.setFunction(item.getMethodName());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ public class SentryStackFrame implements IUnknownPropertiesConsumer {
private String contextLine;
private Boolean inApp;
private String _package; // TODO: _package as its a reserverd word
private Boolean _native; // TODO: _native as its a reserverd word
private String platform;
private Long imageAddr;
private Long symbolAddr;
private Long instructionAddr;
private Map<String, Object> unknown;
// TODO: missing locals?

public List<String> getPreContext() {
return preContext;
Expand Down Expand Up @@ -162,12 +162,12 @@ public void setInstructionAddr(Long instructionAddr) {
this.instructionAddr = instructionAddr;
}

public Boolean getNative() {
return isNative;
public Boolean isNative() {
return _native;
}

public void setNative(Boolean isNative) {
this.isNative = isNative;
public void setNative(Boolean _native) {
this._native = _native;
}

@Override
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.