Merge changes I8445070d,I38f10d62,I2af0bf68

* changes:
  Fix plugin provider names to conform with release train requirement
  Add missing @since tags for new API methods
  DfsReaderOptions are options for a DFS stored repository
This commit is contained in:
Matthias Sohn 2013-04-08 17:25:01 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit 0182e8152e
12 changed files with 13 additions and 10 deletions

View File

@ -1,2 +1,2 @@
plugin_name=JGit Console User Interface
provider_name=Eclipse.org
provider_name=Eclipse JGit

View File

@ -1,2 +1,2 @@
plugin_name=JGit HTTP Server
provider_name=Eclipse.org
provider_name=Eclipse JGit

View File

@ -1,2 +1,2 @@
plugin_name=JGit HTTP Tests
provider_name=Eclipse.org
provider_name=Eclipse JGit

View File

@ -1,2 +1,2 @@
plugin_name=JGit JUnit Http Utility Classes
provider_name=Eclipse.org
provider_name=Eclipse JGit

View File

@ -1,2 +1,2 @@
plugin_name=JGit JUnit Utility Classes
provider_name=Eclipse.org
provider_name=Eclipse JGit

View File

@ -1,2 +1,2 @@
plugin_name=JGit Command Line Interface Tests
provider_name=Eclipse.org
provider_name=Eclipse JGit

View File

@ -1,2 +1,2 @@
plugin_name=JGit Command Line Interface
provider_name=Eclipse.org
provider_name=Eclipse JGit

View File

@ -1,2 +1,2 @@
plugin_name=JGit Core Tests
provider_name=Eclipse.org
provider_name=Eclipse JGit

View File

@ -1,2 +1,2 @@
plugin_name=JGit AWT User Interface
provider_name=Eclipse.org
provider_name=Eclipse JGit

View File

@ -51,7 +51,7 @@
import org.eclipse.jgit.lib.Config;
import org.eclipse.jgit.storage.pack.PackConfig;
/** Options controlling how objects are read from a DHT stored repository. */
/** Options controlling how objects are read from a DFS stored repository. */
public class DfsReaderOptions {
/** 1024 (number of bytes in one kibibyte/kilobyte) */
public static final int KiB = 1024;

View File

@ -638,6 +638,7 @@ private Result updateImpl(final RevWalk walk, final Store store)
* are checked explicitly.
*
* @param check
* @since 3.0
*/
public void setCheckConflicting(boolean check) {
checkConflicting = check;

View File

@ -379,6 +379,7 @@ public void setMaxDeltaDepth(int maxDeltaDepth) {
* @return true if existing delta chains should be cut at
* {@link #getMaxDeltaDepth()}. Default is false, allowing existing
* chains to be of any length.
* @since 3.0
*/
public boolean getCutDeltaChains() {
return cutDeltaChains;
@ -395,6 +396,7 @@ public boolean getCutDeltaChains() {
*
* @param cut
* true to cut existing chains.
* @since 3.0
*/
public void setCutDeltaChains(boolean cut) {
cutDeltaChains = cut;