From b2a3cd0f9afbcad626cea2ff6d7636d8e48ea788 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 10 Sep 2007 20:44:11 +0000 Subject: [PATCH] Wrapped long lines. --- src/java/com/samskivert/jdbc/depot/DepotRepository.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/java/com/samskivert/jdbc/depot/DepotRepository.java b/src/java/com/samskivert/jdbc/depot/DepotRepository.java index 6c398e5..4b1d376 100644 --- a/src/java/com/samskivert/jdbc/depot/DepotRepository.java +++ b/src/java/com/samskivert/jdbc/depot/DepotRepository.java @@ -179,7 +179,8 @@ public abstract class DepotRepository return _ctx.invoke(new CachingModifier(record, key, key) { public int invoke (Connection conn, DatabaseLiaison liaison) throws SQLException { // set any auto-generated column values - Set identityFields = marsh.generateFieldValues(conn, liaison, _result, false); + Set identityFields = + marsh.generateFieldValues(conn, liaison, _result, false); // if needed, update our modifier's key so that it can cache our results if (_key == null) { @@ -581,7 +582,8 @@ public abstract class DepotRepository // if the update modified zero rows or the primary key was obviously unset, do // an insertion: first, set any auto-generated column values - Set identityFields = marsh.generateFieldValues(conn, liaison, _result, false); + Set identityFields = + marsh.generateFieldValues(conn, liaison, _result, false); // update our modifier's key so that it can cache our results if (_key == null) {