From 371d065bb12257c9aa1e32cf18cb3827bcf3ef0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Jamr=C3=B3z?= <79092062+k-jamroz@users.noreply.github.com> Date: Wed, 22 Jul 2026 18:02:03 +0200 Subject: [PATCH] Fix OrderKey code snipped OrderKey snipped was prematurely truncated --- docs/modules/ROOT/examples/performance/OrderKey.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/ROOT/examples/performance/OrderKey.java b/docs/modules/ROOT/examples/performance/OrderKey.java index b9b40b489..bdf68c3b1 100644 --- a/docs/modules/ROOT/examples/performance/OrderKey.java +++ b/docs/modules/ROOT/examples/performance/OrderKey.java @@ -24,6 +24,6 @@ public String toString() { + "orderId=" + orderId + ", customerId=" + customerId + '}'; -//end::orderkey[] } -} \ No newline at end of file +} +//end::orderkey[]