Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
- Removes `enablePerformanceV2` option and makes this the default. The app start duration will now finish when the first frame is drawn instead of when the OS posts the UIWindowDidBecomeVisibleNotification. (#6008)
- Removes enableTracing property from SentryOptions (#5694)
- Structured Logs: Move options out of experimental (#6359)
- Remove unused `SentryFrame.instruction` property (#6504)

### Features

Expand Down
5 changes: 0 additions & 5 deletions Sources/Sentry/Public/SentryFrame.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,6 @@ NS_SWIFT_NAME(Frame)
*/
@property (nonatomic, copy) NSString *_Nullable instructionAddress;

/**
* InstructionAddress of the frame
*/
@property (nonatomic) NSUInteger instruction;

/**
* User for react native, will be ignored for cocoa frames
*/
Expand Down
83 changes: 0 additions & 83 deletions sdk_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -8866,89 +8866,6 @@
}
]
},
{
"kind": "Var",
"name": "instruction",
"printedName": "instruction",
"children": [
{
"kind": "TypeNominal",
"name": "Int",
"printedName": "Swift.Int",
"usr": "s:Si"
}
],
"declKind": "Var",
"usr": "c:objc(cs)SentryFrame(py)instruction",
"moduleName": "Sentry",
"isOpen": true,
"objc_name": "instruction",
"declAttributes": [
"ObjC",
"Dynamic"
],
"accessors": [
{
"kind": "Accessor",
"name": "Get",
"printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
"name": "Int",
"printedName": "Swift.Int",
"usr": "s:Si"
}
],
"declKind": "Accessor",
"usr": "c:objc(cs)SentryFrame(im)instruction",
"moduleName": "Sentry",
"isOpen": true,
"objc_name": "instruction",
"declAttributes": [
"DiscardableResult",
"ObjC",
"Dynamic"
],
"accessorKind": "get"
},
{
"kind": "Accessor",
"name": "Set",
"printedName": "Set()",
"children": [
{
"kind": "TypeNameAlias",
"name": "Void",
"printedName": "Swift.Void",
"children": [
{
"kind": "TypeNominal",
"name": "Void",
"printedName": "()"
}
]
},
{
"kind": "TypeNominal",
"name": "Int",
"printedName": "Swift.Int",
"usr": "s:Si"
}
],
"declKind": "Accessor",
"usr": "c:objc(cs)SentryFrame(im)setInstruction:",
"moduleName": "Sentry",
"isOpen": true,
"objc_name": "setInstruction:",
"declAttributes": [
"ObjC",
"Dynamic"
],
"accessorKind": "set"
}
]
},
{
"kind": "Var",
"name": "lineNumber",
Expand Down
Loading