From 22201e8cca3b2b1f6df71fb1053c7358a9a2d72f Mon Sep 17 00:00:00 2001 From: Shawn Pearce Date: Tue, 8 Aug 2017 06:44:35 -0700 Subject: [PATCH] Update thread-safety warning about Repository Change-Id: I1026a77cc688467d5a89a41121146f1bd3d56fa5 --- org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 1f2ab9df8..72f79f4a9 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java @@ -106,7 +106,13 @@ import org.slf4j.LoggerFactory; * A repository holds all objects and refs used for managing source code (could * be any type of file, but source code is what SCM's are typically used for). *

- * This class is thread-safe. + * The thread-safety of a {@link Repository} very much depends on the concrete + * implementation. Applications working with a generic {@code Repository} type + * must not assume the instance is thread-safe. + *

*/ public abstract class Repository implements AutoCloseable { private static final Logger LOG = LoggerFactory.getLogger(Repository.class);