Skip to content

Commit 89a572d

Browse files
adinauerclaude
andcommitted
fix(core): Use correct cache span op terminology in Javadoc
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 50c1206 commit 89a572d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sentry/src/main/java/io/sentry/SentryOptions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ public class SentryOptions {
490490
/** Whether database transaction spans (BEGIN, COMMIT, ROLLBACK) should be traced. */
491491
private boolean enableDatabaseTransactionTracing = false;
492492

493-
/** Whether cache operations (get, put, evict, clear) should be traced. */
493+
/** Whether cache operations (get, put, remove, flush) should be traced. */
494494
private boolean enableCacheTracing = false;
495495

496496
/** Date provider to retrieve the current date from. */
@@ -2634,7 +2634,7 @@ public void setEnableDatabaseTransactionTracing(boolean enableDatabaseTransactio
26342634
}
26352635

26362636
/**
2637-
* Whether cache operations (get, put, evict, clear) should be traced.
2637+
* Whether cache operations (get, put, remove, flush) should be traced.
26382638
*
26392639
* @return true if cache operations should be traced
26402640
*/
@@ -2643,7 +2643,7 @@ public boolean isEnableCacheTracing() {
26432643
}
26442644

26452645
/**
2646-
* Whether cache operations (get, put, evict, clear) should be traced.
2646+
* Whether cache operations (get, put, remove, flush) should be traced.
26472647
*
26482648
* @param enableCacheTracing true if cache operations should be traced
26492649
*/

0 commit comments

Comments
 (0)