diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2022-11-16 00:15:17 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2022-11-16 00:15:17 +0100 |
commit | f1909615d3d351b6c0b956e25a4a224b6b999d90 (patch) | |
tree | f85a0862cbf2797eb6749fcb23433bd9457be41d /org.eclipse.jgit/src/org/eclipse/jgit/lib | |
parent | 9f7d77b608c384669811772760591329890f19b7 (diff) | |
parent | 48316309b1e140849d81d33685264d3b02c792f5 (diff) | |
download | jgit-f1909615d3d351b6c0b956e25a4a224b6b999d90.tar.gz jgit-f1909615d3d351b6c0b956e25a4a224b6b999d90.zip |
Merge branch 'stable-5.13' into stable-6.0
* stable-5.13:
[benchmarks] Remove profiler configuration
Add SHA1 benchmark
[benchmarks] Set version of maven-compiler-plugin to 3.8.1
Fix running JMH benchmarks
Add option to allow using JDK's SHA1 implementation
Ignore IllegalStateException if JVM is already shutting down
Change-Id: I40105336f0b9e593a8a2c242a9557f854c274fdc
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java index 24eebc6a19..924328d8a6 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java @@ -438,6 +438,13 @@ public final class ConfigConstants { public static final String CONFIG_KEY_SUPPORTSATOMICFILECREATION = "supportsatomicfilecreation"; /** + * The "sha1Implementation" key in the "core" section + * + * @since 5.13.2 + */ + public static final String SHA1_IMPLEMENTATION = "sha1implementation"; + + /** * The "noprefix" key in the "diff" section * @since 3.0 */ |