Browse Source

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
tags/v3.0.0.201305080800-m7
Matthias Sohn 11 years ago
parent
commit
0182e8152e

+ 1
- 1
org.eclipse.jgit.console/plugin.properties View File

plugin_name=JGit Console User Interface plugin_name=JGit Console User Interface
provider_name=Eclipse.org
provider_name=Eclipse JGit

+ 1
- 1
org.eclipse.jgit.http.server/plugin.properties View File

plugin_name=JGit HTTP Server plugin_name=JGit HTTP Server
provider_name=Eclipse.org
provider_name=Eclipse JGit

+ 1
- 1
org.eclipse.jgit.http.test/plugin.properties View File

plugin_name=JGit HTTP Tests plugin_name=JGit HTTP Tests
provider_name=Eclipse.org
provider_name=Eclipse JGit

+ 1
- 1
org.eclipse.jgit.junit.http/plugin.properties View File

plugin_name=JGit JUnit Http Utility Classes plugin_name=JGit JUnit Http Utility Classes
provider_name=Eclipse.org
provider_name=Eclipse JGit

+ 1
- 1
org.eclipse.jgit.junit/plugin.properties View File

plugin_name=JGit JUnit Utility Classes plugin_name=JGit JUnit Utility Classes
provider_name=Eclipse.org
provider_name=Eclipse JGit

+ 1
- 1
org.eclipse.jgit.pgm.test/plugin.properties View File

plugin_name=JGit Command Line Interface Tests plugin_name=JGit Command Line Interface Tests
provider_name=Eclipse.org
provider_name=Eclipse JGit

+ 1
- 1
org.eclipse.jgit.pgm/plugin.properties View File

plugin_name=JGit Command Line Interface plugin_name=JGit Command Line Interface
provider_name=Eclipse.org
provider_name=Eclipse JGit

+ 1
- 1
org.eclipse.jgit.test/plugin.properties View File

plugin_name=JGit Core Tests plugin_name=JGit Core Tests
provider_name=Eclipse.org
provider_name=Eclipse JGit

+ 1
- 1
org.eclipse.jgit.ui/plugin.properties View File

plugin_name=JGit AWT User Interface plugin_name=JGit AWT User Interface
provider_name=Eclipse.org
provider_name=Eclipse JGit

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/DfsReaderOptions.java View File

import org.eclipse.jgit.lib.Config; import org.eclipse.jgit.lib.Config;
import org.eclipse.jgit.storage.pack.PackConfig; 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 { public class DfsReaderOptions {
/** 1024 (number of bytes in one kibibyte/kilobyte) */ /** 1024 (number of bytes in one kibibyte/kilobyte) */
public static final int KiB = 1024; public static final int KiB = 1024;

+ 1
- 0
org.eclipse.jgit/src/org/eclipse/jgit/lib/RefUpdate.java View File

* are checked explicitly. * are checked explicitly.
* *
* @param check * @param check
* @since 3.0
*/ */
public void setCheckConflicting(boolean check) { public void setCheckConflicting(boolean check) {
checkConflicting = check; checkConflicting = check;

+ 2
- 0
org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java View File

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

Loading…
Cancel
Save