From 9681e1cc46cdcc3c57e67802ac26b053842fdf10 Mon Sep 17 00:00:00 2001 From: Theo van Kraay Date: Thu, 14 Aug 2025 14:49:24 +0100 Subject: [PATCH] Update instructions/convert-jpa-to-spring-data-cosmos.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- instructions/convert-jpa-to-spring-data-cosmos.md | 1 - 1 file changed, 1 deletion(-) diff --git a/instructions/convert-jpa-to-spring-data-cosmos.md b/instructions/convert-jpa-to-spring-data-cosmos.md index 900f562..cb123c5 100644 --- a/instructions/convert-jpa-to-spring-data-cosmos.md +++ b/instructions/convert-jpa-to-spring-data-cosmos.md @@ -433,7 +433,6 @@ private void populateRelationships(Entity entity) { **Use search tools to find and update every occurrence:** -- Search for: `int.*TEST.*ID` → Replace with: `String.*TEST.*ID = "test-xyz-1"` - Search for: `setId\(\d+\)` → Replace with: `setId("test-id-X")` - Search for: `findById\(\d+\)` → Replace with: `findById("test-id-X")` - Search for: `\.findPetTypes\(\)` → Replace with: `.findAllOrderByName()`