From b2743b6d9aed2ec91a2bd516e32b4ffa277c0ac2 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Wed, 12 Sep 2012 19:47:14 +0200 Subject: [PATCH] Improved toString() method --- jOOQ-test/src/org/jooq/test/_/BookWithoutAnnotations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jOOQ-test/src/org/jooq/test/_/BookWithoutAnnotations.java b/jOOQ-test/src/org/jooq/test/_/BookWithoutAnnotations.java index 86f7f86cc6..7ef37cc56f 100644 --- a/jOOQ-test/src/org/jooq/test/_/BookWithoutAnnotations.java +++ b/jOOQ-test/src/org/jooq/test/_/BookWithoutAnnotations.java @@ -80,6 +80,6 @@ public class BookWithoutAnnotations { @Override public String toString() { - return "JPABook [id=" + id + ", title=" + title + ", firstName=" + firstName + ", lastName=" + lastName + "]"; + return "NonJPABook [id=" + id + ", title=" + title + ", firstName=" + firstName + ", lastName=" + lastName + "]"; } }