From ac7c0a6a7571ee4067a2ee3f7805e5d7b7ac0eff Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Mon, 2 Jun 2014 18:07:04 +0200 Subject: [PATCH] [#3306] Let Record.key() return a "copy record", instead of a view to the original record --- .../test/java/org/jooq/test/all/testcases/CRUDTests.java | 8 -------- jOOQ/src/main/java/org/jooq/UpdatableRecord.java | 5 +---- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/jOOQ-test/src/test/java/org/jooq/test/all/testcases/CRUDTests.java b/jOOQ-test/src/test/java/org/jooq/test/all/testcases/CRUDTests.java index 4c45be36a6..c4108bf002 100644 --- a/jOOQ-test/src/test/java/org/jooq/test/all/testcases/CRUDTests.java +++ b/jOOQ-test/src/test/java/org/jooq/test/all/testcases/CRUDTests.java @@ -281,14 +281,6 @@ extends BaseTest> extends TableRecord { /** - * A view holding values for the {@link Table#getPrimaryKey()} - *

- * This method returns a "view" of this record itself. Modifications to the - * returned record will affect values in this record. + * A Record copy holding values for the {@link Table#getPrimaryKey()}. *

* The returned record consists exactly of those fields as returned by the * table's primary key: {@link UniqueKey#getFields()}.