Skip to content

Commit 5aa3ce5

Browse files
authored
Fix v9 typo (#5679)
1 parent 9e6569a commit 5aa3ce5

File tree

5 files changed

+5
-31
lines changed

5 files changed

+5
-31
lines changed

Sources/Sentry/Public/SentryDsn.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ NS_ASSUME_NONNULL_BEGIN
1111

1212
- (NSString *)getHash;
1313

14-
#if !SDK_v9
14+
#if !SDK_V9
1515
- (NSURL *)getStoreEndpoint DEPRECATED_MSG_ATTRIBUTE("This endpoint is no longer used");
1616
#endif // !SDK_V9
1717
- (NSURL *)getEnvelopeEndpoint;

Sources/Sentry/SentryDataCategoryMapper.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
NSString *const kSentryDataCategoryNameAttachment = @"attachment";
1414
#if !SDK_V9
1515
NSString *const kSentryDataCategoryNameUserFeedback = @"user_report";
16-
#endif // !SSDK_v9
16+
#endif // !SDK_V9
1717
NSString *const kSentryDataCategoryNameProfile = @"profile";
1818
NSString *const kSentryDataCategoryNameProfileChunk = @"profile_chunk_ui";
1919
NSString *const kSentryDataCategoryNameReplay = @"replay";

Sources/Sentry/SentryDebugImageProvider.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ - (instancetype)initWithBinaryImageProvider:(id<SentryCrashBinaryImageProvider>)
5656
if (self = [super init]) {
5757
#if !SDK_V9
5858
self.binaryImageProvider = binaryImageProvider;
59-
#endif // !SDK_v9
59+
#endif // !SDK_V9
6060
self.binaryImageCache = binaryImageCache;
6161
}
6262
return self;

Sources/Sentry/SentryDsn.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ - (NSString *)getHash
3939
return output;
4040
}
4141

42-
#if !SDK_v9
42+
#if !SDK_V9
4343
- (NSURL *)getStoreEndpoint
4444
{
4545
if (nil == _storeEndpoint) {
@@ -51,7 +51,7 @@ - (NSURL *)getStoreEndpoint
5151
}
5252
return _storeEndpoint;
5353
}
54-
#endif // !SDK_v9
54+
#endif // !SDK_V9
5555

5656
- (NSURL *)getEnvelopeEndpoint
5757
{

sdk_api_V9.json

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -24163,32 +24163,6 @@
2416324163
],
2416424164
"funcSelfKind": "NonMutating"
2416524165
},
24166-
{
24167-
"kind": "Function",
24168-
"name": "getStoreEndpoint",
24169-
"printedName": "getStoreEndpoint()",
24170-
"children": [
24171-
{
24172-
"kind": "TypeNominal",
24173-
"name": "URL",
24174-
"printedName": "Foundation.URL",
24175-
"usr": "s:10Foundation3URLV"
24176-
}
24177-
],
24178-
"declKind": "Func",
24179-
"usr": "c:objc(cs)SentryDsn(im)getStoreEndpoint",
24180-
"moduleName": "Sentry",
24181-
"deprecated": true,
24182-
"isOpen": true,
24183-
"objc_name": "getStoreEndpoint",
24184-
"declAttributes": [
24185-
"DiscardableResult",
24186-
"Available",
24187-
"ObjC",
24188-
"Dynamic"
24189-
],
24190-
"funcSelfKind": "NonMutating"
24191-
},
2419224166
{
2419324167
"kind": "Function",
2419424168
"name": "getEnvelopeEndpoint",

0 commit comments

Comments
 (0)