@@ -530,12 +530,6 @@ sentry_scope_set_user(sentry_scope_t *scope, sentry_value_t user)
530530 scope -> user = user ;
531531}
532532
533- void
534- sentry_scope_remove_user (sentry_scope_t * scope )
535- {
536- sentry_scope_set_user (scope , sentry_value_new_null ());
537- }
538-
539533void
540534sentry_scope_set_tag (sentry_scope_t * scope , const char * key , const char * value )
541535{
@@ -550,19 +544,6 @@ sentry_scope_set_tag_n(sentry_scope_t *scope, const char *key, size_t key_len,
550544 scope -> tags , key , key_len , sentry_value_new_string_n (value , value_len ));
551545}
552546
553- void
554- sentry_scope_remove_tag (sentry_scope_t * scope , const char * key )
555- {
556- sentry_value_remove_by_key (scope -> tags , key );
557- }
558-
559- void
560- sentry_scope_remove_tag_n (
561- sentry_scope_t * scope , const char * key , size_t key_len )
562- {
563- sentry_value_remove_by_key_n (scope -> tags , key , key_len );
564- }
565-
566547void
567548sentry_scope_set_extra (
568549 sentry_scope_t * scope , const char * key , sentry_value_t value )
@@ -577,19 +558,6 @@ sentry_scope_set_extra_n(sentry_scope_t *scope, const char *key, size_t key_len,
577558 sentry_value_set_by_key_n (scope -> extra , key , key_len , value );
578559}
579560
580- void
581- sentry_scope_remove_extra (sentry_scope_t * scope , const char * key )
582- {
583- sentry_value_remove_by_key (scope -> extra , key );
584- }
585-
586- void
587- sentry_scope_remove_extra_n (
588- sentry_scope_t * scope , const char * key , size_t key_len )
589- {
590- sentry_value_remove_by_key_n (scope -> extra , key , key_len );
591- }
592-
593561void
594562sentry_scope_set_context (
595563 sentry_scope_t * scope , const char * key , sentry_value_t value )
@@ -604,19 +572,6 @@ sentry_scope_set_context_n(sentry_scope_t *scope, const char *key,
604572 sentry_value_set_by_key_n (scope -> contexts , key , key_len , value );
605573}
606574
607- void
608- sentry_scope_remove_context (sentry_scope_t * scope , const char * key )
609- {
610- sentry_value_remove_by_key (scope -> contexts , key );
611- }
612-
613- void
614- sentry_scope_remove_context_n (
615- sentry_scope_t * scope , const char * key , size_t key_len )
616- {
617- sentry_value_remove_by_key_n (scope -> contexts , key , key_len );
618- }
619-
620575void
621576sentry__scope_set_fingerprint_va (
622577 sentry_scope_t * scope , const char * fingerprint , va_list va )
@@ -669,13 +624,6 @@ sentry_scope_set_fingerprint_n(
669624 va_end (va );
670625}
671626
672- void
673- sentry_scope_remove_fingerprint (sentry_scope_t * scope )
674- {
675- sentry_value_decref (scope -> fingerprint );
676- scope -> fingerprint = sentry_value_new_null ();
677- }
678-
679627void
680628sentry_scope_set_transaction (sentry_scope_t * scope , const char * transaction )
681629{
0 commit comments