Skip to content

Commit 708d339

Browse files
authored
Remove "not yet implemented" from flush comments (#4305)
* Remove not yet implemented from flush comments * changelog * move changelog entry
1 parent de2136e commit 708d339

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
- The value of the `Sentry-Version-Name` attribute looks like `sentry-8.5.0-otel-2.10.0`
3030
- Fix tags missing for compose view hierarchies ([#4275](https://github.com/getsentry/sentry-java/pull/4275))
3131
- Do not leak SentryFileInputStream/SentryFileOutputStream descriptors and channels ([#4296](https://github.com/getsentry/sentry-java/pull/4296))
32+
- Remove "not yet implemented" from `Sentry.flush` comment ([#4305](https://github.com/getsentry/sentry-java/pull/4305))
3233

3334
### Internal
3435

sentry/src/main/java/io/sentry/IScopes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ default void configureScope(@NotNull ScopeCallback callback) {
376376
boolean isHealthy();
377377

378378
/**
379-
* Flushes events queued up, but keeps the scopes enabled. Not implemented yet.
379+
* Flushes events queued up, but keeps the scopes enabled.
380380
*
381381
* @param timeoutMillis time in milliseconds
382382
*/

sentry/src/main/java/io/sentry/ISentryClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public interface ISentryClient {
4040
void close(boolean isRestarting);
4141

4242
/**
43-
* Flushes events queued up, but keeps the client enabled. Not implemented yet.
43+
* Flushes events queued up, but keeps the client enabled.
4444
*
4545
* @param timeoutMillis time in milliseconds
4646
*/

sentry/src/main/java/io/sentry/Sentry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,7 @@ public static boolean isHealthy() {
10301030
}
10311031

10321032
/**
1033-
* Flushes events queued up to the current Scopes. Not implemented yet.
1033+
* Flushes events queued up to the current Scopes.
10341034
*
10351035
* @param timeoutMillis time in milliseconds
10361036
*/

sentry/src/main/java/io/sentry/transport/ITransport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ default boolean isHealthy() {
2020
}
2121

2222
/**
23-
* Flushes events queued up, but keeps the client enabled. Not implemented yet.
23+
* Flushes events queued up, but keeps the client enabled.
2424
*
2525
* @param timeoutMillis time in milliseconds
2626
*/

0 commit comments

Comments
 (0)