Skip to content

Commit 197422e

Browse files
committed
Change import for Hint
1 parent 86cb4ad commit 197422e

File tree

10 files changed

+23
-23
lines changed

10 files changed

+23
-23
lines changed

src/includes/configuration/before-send-fingerprint/java.spring-boot.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
```java
22
import io.sentry.SentryEvent;
33
import io.sentry.SentryOptions;
4-
import io.sentry.hints.Hint
4+
import io.sentry.Hint
55
import org.springframework.stereotype.Component;
66

77
@Component
@@ -19,7 +19,7 @@ public class CustomBeforeSendCallback implements SentryOptions.BeforeSendCallbac
1919
```kotlin
2020
import io.sentry.SentryEvent
2121
import io.sentry.SentryOptions
22-
import io.sentry.hints.Hint
22+
import io.sentry.Hint
2323
import org.springframework.stereotype.Component
2424

2525
@Component

src/includes/configuration/before-send-fingerprint/java.spring.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
```java
22
import io.sentry.SentryEvent;
33
import io.sentry.SentryOptions;
4-
import io.sentry.hints.Hint
4+
import io.sentry.Hint
55
import org.springframework.stereotype.Component;
66

77
@Component
@@ -19,7 +19,7 @@ public class CustomBeforeSendCallback implements SentryOptions.BeforeSendCallbac
1919
```kotlin
2020
import io.sentry.SentryEvent
2121
import io.sentry.SentryOptions
22-
import io.sentry.hints.Hint
22+
import io.sentry.Hint
2323
import org.springframework.stereotype.Component
2424

2525
@Component

src/includes/configuration/before-send-hint/java.spring-boot.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ A `BiFunction<SentryEvent, Hint, SentryEvent>` can be used to mutate, discard (r
33
```java
44
import io.sentry.SentryEvent;
55
import io.sentry.SentryOptions;
6-
import io.sentry.hints.Hint
6+
import io.sentry.Hint
77
import org.springframework.stereotype.Component;
88

99
@Component
@@ -22,7 +22,7 @@ public class CustomBeforeSendCallback implements SentryOptions.BeforeSendCallbac
2222
```kotlin
2323
import io.sentry.SentryEvent
2424
import io.sentry.SentryOptions
25-
import io.sentry.hints.Hint
25+
import io.sentry.Hint
2626
import org.springframework.stereotype.Component
2727

2828
@Component

src/includes/configuration/before-send-hint/java.spring.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ A `BiFunction<SentryEvent, Hint, SentryEvent>` can be used to mutate, discard (r
33
```java
44
import io.sentry.SentryEvent;
55
import io.sentry.SentryOptions;
6-
import io.sentry.hints.Hint
6+
import io.sentry.Hint
77
import org.springframework.stereotype.Component;
88

99
@Component
@@ -22,7 +22,7 @@ public class CustomBeforeSendCallback implements SentryOptions.BeforeSendCallbac
2222
```kotlin
2323
import io.sentry.SentryEvent
2424
import io.sentry.SentryOptions
25-
import io.sentry.hints.Hint
25+
import io.sentry.Hint
2626
import org.springframework.stereotype.Component
2727

2828
@Component

src/includes/configuration/before-send/java.spring-boot.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
```java
44
import io.sentry.SentryEvent;
55
import io.sentry.SentryOptions;
6-
import io.sentry.hints.Hint
6+
import io.sentry.Hint
77
import org.springframework.stereotype.Component;
88

99
@Component
@@ -20,7 +20,7 @@ public class CustomBeforeSendCallback implements SentryOptions.BeforeSendCallbac
2020
```kotlin
2121
import io.sentry.SentryEvent
2222
import io.sentry.SentryOptions
23-
import io.sentry.hints.Hint
23+
import io.sentry.Hint
2424
import org.springframework.stereotype.Component
2525

2626
@Component

src/includes/configuration/before-send/java.spring.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
```java
44
import io.sentry.SentryEvent;
55
import io.sentry.SentryOptions;
6-
import io.sentry.hints.Hint
6+
import io.sentry.Hint
77
import org.springframework.stereotype.Component;
88

99
@Component
@@ -20,7 +20,7 @@ public class CustomBeforeSendCallback implements SentryOptions.BeforeSendCallbac
2020
```kotlin
2121
import io.sentry.SentryEvent
2222
import io.sentry.SentryOptions
23-
import io.sentry.hints.Hint
23+
import io.sentry.Hint
2424
import org.springframework.stereotype.Component
2525

2626
@Component

src/includes/configuration/config-intro/java.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class MyClass {
2525
```kotlin {tabTitle:Kotlin}
2626
import io.sentry.Sentry
2727
import io.sentry.SentryOptions.BeforeSendCallback
28-
import io.sentry.hints.Hint
28+
import io.sentry.Hint
2929

3030
fun main() {
3131
Sentry.init { options ->

src/platforms/android/configuration/manual-init.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public class SentryApplication extends Application {
6363
```kotlin
6464
import io.sentry.android.core.SentryAndroid
6565
import io.sentry.SentryOptions.BeforeSendCallback
66-
import io.sentry.hints.Hint
66+
import io.sentry.Hint
6767
import android.app.Application
6868

6969
class SentryApplication : Application() {

src/platforms/java/guides/spring-boot/advanced-usage.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Any Spring bean implementing `EventProcessor` will be automatically set on `Sent
2828
```java
2929
import io.sentry.SentryEvent;
3030
import io.sentry.EventProcessor;
31-
import io.sentry.hints.Hint
31+
import io.sentry.Hint
3232
import org.springframework.stereotype.Component;
3333
3434
@Component
@@ -44,7 +44,7 @@ public class CustomEventProcessor implements EventProcessor {
4444
```kotlin
4545
import io.sentry.SentryEvent
4646
import io.sentry.EventProcessor
47-
import io.sentry.hints.Hint
47+
import io.sentry.Hint
4848
import org.springframework.stereotype.Component
4949
5050
@Component
@@ -63,7 +63,7 @@ Any Spring bean implementing the `BeforeSendCallback` will be automatically set
6363
```java
6464
import io.sentry.SentryEvent;
6565
import io.sentry.SentryOptions;
66-
import io.sentry.hints.Hint
66+
import io.sentry.Hint
6767
import org.springframework.stereotype.Component;
6868
6969
@Component
@@ -80,7 +80,7 @@ public class CustomBeforeSendCallback implements SentryOptions.BeforeSendCallbac
8080
```kotlin
8181
import io.sentry.SentryEvent
8282
import io.sentry.SentryOptions
83-
import io.sentry.hints.Hint
83+
import io.sentry.Hint
8484
import org.springframework.stereotype.Component
8585
8686
@Component
@@ -100,7 +100,7 @@ Any Spring bean implementing the `BeforeBreadcrumbCallback` will be automaticall
100100
```java
101101
import io.sentry.Breadcrumb;
102102
import io.sentry.SentryOptions;
103-
import io.sentry.hints.Hint
103+
import io.sentry.Hint
104104
import org.springframework.stereotype.Component;
105105
106106
@Component
@@ -121,7 +121,7 @@ public class CustomBeforeBreadcrumbCallback implements SentryOptions.BeforeBread
121121
```kotlin
122122
import io.sentry.Breadcrumb
123123
import io.sentry.SentryOptions
124-
import io.sentry.hints.Hint
124+
import io.sentry.Hint
125125
import org.springframework.stereotype.Component
126126
127127
@Component

src/platforms/java/usage.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public class MyClass {
9292
```kotlin {tabTitle:Kotlin}
9393
import io.sentry.SentryOptions.BeforeBreadcrumbCallback
9494
import io.sentry.SentryOptions.BeforeSendCallback
95-
import io.sentry.hints.Hint
95+
import io.sentry.Hint
9696

9797
fun main() {
9898
Sentry.init { options ->
@@ -453,7 +453,7 @@ import io.sentry.EventProcessor;
453453
import io.sentry.IHub;
454454
import io.sentry.Sentry;
455455
import io.sentry.SentryEvent;
456-
import io.sentry.hints.Hint
456+
import io.sentry.Hint
457457
import io.sentry.protocol.Message;
458458

459459
public class MyClass {
@@ -481,7 +481,7 @@ public class MyClass {
481481
482482
```kotlin
483483
import io.sentry.Sentry
484-
import io.sentry.hints.Hint
484+
import io.sentry.Hint
485485
import io.sentry.protocol.Message
486486

487487
class MyClass {

0 commit comments

Comments
 (0)