From 9f98fce1eb31cfb2c2e94ebbb41dbb1838ba4aad Mon Sep 17 00:00:00 2001 From: samskivert Date: Fri, 4 Sep 2009 01:51:20 +0000 Subject: [PATCH] Commit first, ask questions later, that's what I always say. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2629 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- src/java/com/samskivert/jdbc/ResultUnit.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/com/samskivert/jdbc/ResultUnit.java b/src/java/com/samskivert/jdbc/ResultUnit.java index 6ada13d1..f917e95e 100644 --- a/src/java/com/samskivert/jdbc/ResultUnit.java +++ b/src/java/com/samskivert/jdbc/ResultUnit.java @@ -18,8 +18,8 @@ public abstract class ResultUnit extends RepositoryUnit throws Exception; /** - * Operates on the result from getResult back on the main thread, if - * getResult succeeded. + * Operates on the result from computeResult back on the main thread, if + * computeResult succeeded. */ public abstract void handleResult (T result); @@ -33,7 +33,7 @@ public abstract class ResultUnit extends RepositoryUnit public void invokePersist () throws Exception { - _result = getResult(); + _result = computeResult(); } protected T _result;