From 1af3d93ca73f0b315d11229dab94709c235e164d Mon Sep 17 00:00:00 2001 From: Albert Lee Date: Thu, 25 Oct 2007 00:04:51 +0000 Subject: [PATCH] OPENJPA-415 remove AbstractResultList.finalize() method. git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@588089 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/openjpa/lib/rop/AbstractResultList.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/openjpa-lib/src/main/java/org/apache/openjpa/lib/rop/AbstractResultList.java b/openjpa-lib/src/main/java/org/apache/openjpa/lib/rop/AbstractResultList.java index f7d1d72e0..e6b80be82 100644 --- a/openjpa-lib/src/main/java/org/apache/openjpa/lib/rop/AbstractResultList.java +++ b/openjpa-lib/src/main/java/org/apache/openjpa/lib/rop/AbstractResultList.java @@ -84,11 +84,6 @@ public abstract class AbstractResultList implements ResultList { throw new UnsupportedOperationException(); } - protected void finalize() throws Throwable { - super.finalize(); - close(); - } - protected void assertOpen() { if (isClosed()) throw new NoSuchElementException(_loc.get("closed").getMessage());