diff options
author | Shawn Pearce <spearce@spearce.org> | 2017-08-06 12:35:17 -0700 |
---|---|---|
committer | Shawn Pearce <spearce@spearce.org> | 2017-08-11 18:20:50 -0700 |
commit | 53dd9a9e4bc5ae325a70387882cdd38a71c8deca (patch) | |
tree | 7d2a4c896376b8200a8fe26624643d57af6abc2b /org.eclipse.jgit/src | |
parent | ed29dec1eafb46225df5f9614262acc40aac7142 (diff) | |
download | jgit-53dd9a9e4bc5ae325a70387882cdd38a71c8deca.tar.gz jgit-53dd9a9e4bc5ae325a70387882cdd38a71c8deca.zip |
Rename extensions.refsStorage to refStorage
This matches the proposal that has been discussed at length on
git-core mailing list and seems to be the accepted convention.
Change-Id: I9f6ab15144826893d1e2a4b48a2d657d6dd445ec
Diffstat (limited to 'org.eclipse.jgit/src')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/FileRepository.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/FileRepository.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/FileRepository.java index 6a674aa658..646feac8cf 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/FileRepository.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/FileRepository.java @@ -216,7 +216,7 @@ public class FileRepository extends Repository { ConfigConstants.CONFIG_KEY_REPO_FORMAT_VERSION, 0); String reftype = repoConfig.getString( - "extensions", null, "refsStorage"); //$NON-NLS-1$ //$NON-NLS-2$ + "extensions", null, "refStorage"); //$NON-NLS-1$ //$NON-NLS-2$ if (repositoryFormatVersion >= 1 && reftype != null) { if (StringUtils.equalsIgnoreCase(reftype, "reftree")) { //$NON-NLS-1$ refs = new RefTreeDatabase(this, new RefDirectory(this)); |