From 27ae8bc65553879000ae6a687dbe3a888160da98 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Tue, 27 Jan 2015 11:14:22 +0100 Subject: Implement AutoClosable interface to support try-with-resources block Bug: 428039 Change-Id: I41880862db5303b5bea4b2184ba7844d69c997b5 Signed-off-by: Matthias Sohn --- org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectDatabase.java | 2 +- org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java | 2 +- org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib') diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectDatabase.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectDatabase.java index 0cc51d1a52..3e77a10181 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectDatabase.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectDatabase.java @@ -54,7 +54,7 @@ import org.eclipse.jgit.errors.MissingObjectException; * An object database stores one or more Git objects, indexed by their unique * {@link ObjectId}. */ -public abstract class ObjectDatabase { +public abstract class ObjectDatabase implements AutoCloseable { /** Initialize a new database instance for access. */ protected ObjectDatabase() { // Protected to force extension. diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java index 7fea880612..b10f8063ac 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java @@ -57,7 +57,7 @@ import java.util.Map; * Every {@link Repository} has a single reference database, mapping names to * the tips of the object graph contained by the {@link ObjectDatabase}. */ -public abstract class RefDatabase { +public abstract class RefDatabase implements AutoCloseable { /** * Order of prefixes to search when using non-absolute references. *

diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java index 6353a5b5f3..4ef0051503 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java @@ -99,7 +99,7 @@ import org.eclipse.jgit.util.io.SafeBufferedOutputStream; *

* This class is thread-safe. */ -public abstract class Repository { +public abstract class Repository implements AutoCloseable { private static final ListenerList globalListeners = new ListenerList(); /** @return the global listener list observing all events in this JVM. */ -- cgit v1.2.3