We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36fcf4b commit f0b2e63Copy full SHA for f0b2e63
src/site/markdown/advanced.md
@@ -339,7 +339,7 @@ session.on(SessionCompactionStartEvent.class, start -> {
339
});
340
session.on(SessionCompactionCompleteEvent.class, complete -> {
341
var data = complete.getData();
342
- System.out.println("Compaction completed - success: " + data.isSuccess()
+ System.out.println("Compaction completed - success: " + data.success()
343
+ ", tokens removed: " + data.tokensRemoved());
344
345
```
0 commit comments