Browse Source

Fix javadoc formatting in ConfigConstants

Change-Id: I6ae39b874a3c1fa9e1cda235ff137c9eb8dd359f
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-3.6
Matthias Sohn 10 years ago
parent
commit
da178eedd2
  1. 38
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java

38
org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java

@ -79,7 +79,6 @@ public class ConfigConstants {
/** /**
* The "rebase" section * The "rebase" section
*
* @since 3.2 * @since 3.2
*/ */
public static final String CONFIG_REBASE_SECTION = "rebase"; public static final String CONFIG_REBASE_SECTION = "rebase";
@ -92,14 +91,12 @@ public class ConfigConstants {
/** /**
* The "fetch" section * The "fetch" section
*
* @since 3.3 * @since 3.3
*/ */
public static final String CONFIG_FETCH_SECTION = "fetch"; public static final String CONFIG_FETCH_SECTION = "fetch";
/** /**
* The "pull" section * The "pull" section
*
* @since 3.5 * @since 3.5
*/ */
public static final String CONFIG_PULL_SECTION = "pull"; public static final String CONFIG_PULL_SECTION = "pull";
@ -139,7 +136,6 @@ public class ConfigConstants {
/** /**
* The "symlinks" key * The "symlinks" key
*
* @since 3.3 * @since 3.3
*/ */
public static final String CONFIG_KEY_SYMLINKS = "symlinks"; public static final String CONFIG_KEY_SYMLINKS = "symlinks";
@ -167,7 +163,6 @@ public class ConfigConstants {
/** /**
* The "autostash" key * The "autostash" key
*
* @since 3.2 * @since 3.2
*/ */
public static final String CONFIG_KEY_AUTOSTASH = "autostash"; public static final String CONFIG_KEY_AUTOSTASH = "autostash";
@ -234,14 +229,12 @@ public class ConfigConstants {
/** /**
* The "aggressiveDepth" key * The "aggressiveDepth" key
*
* @since 3.6 * @since 3.6
*/ */
public static final String CONFIG_KEY_AGGRESSIVE_DEPTH = "aggressiveDepth"; public static final String CONFIG_KEY_AGGRESSIVE_DEPTH = "aggressiveDepth";
/** /**
* The "aggressiveWindow" key * The "aggressiveWindow" key
*
* @since 3.6 * @since 3.6
*/ */
public static final String CONFIG_KEY_AGGRESSIVE_WINDOW = "aggressiveWindow"; public static final String CONFIG_KEY_AGGRESSIVE_WINDOW = "aggressiveWindow";
@ -259,38 +252,37 @@ public class ConfigConstants {
public static final String CONFIG_KEY_CHECKSTAT = "checkstat"; public static final String CONFIG_KEY_CHECKSTAT = "checkstat";
/** /**
* The "renamelimit" key in the "diff section" * The "renamelimit" key in the "diff section"
* @since 3.0 * @since 3.0
*/ */
public static final String CONFIG_KEY_RENAMELIMIT = "renamelimit"; public static final String CONFIG_KEY_RENAMELIMIT = "renamelimit";
/** /**
* The "noprefix" key in the "diff section" * The "noprefix" key in the "diff section"
* @since 3.0 * @since 3.0
*/ */
public static final String CONFIG_KEY_NOPREFIX = "noprefix"; public static final String CONFIG_KEY_NOPREFIX = "noprefix";
/** /**
* A "renamelimit" value in the "diff section" * A "renamelimit" value in the "diff section"
* @since 3.0 * @since 3.0
*/ */
public static final String CONFIG_RENAMELIMIT_COPY = "copy"; public static final String CONFIG_RENAMELIMIT_COPY = "copy";
/** /**
* A "renamelimit" value in the "diff section" * A "renamelimit" value in the "diff section"
* @since 3.0 * @since 3.0
*/ */
public static final String CONFIG_RENAMELIMIT_COPIES = "copies"; public static final String CONFIG_RENAMELIMIT_COPIES = "copies";
/** /**
* The "renames" key in the "diff section" * The "renames" key in the "diff section"
* @since 3.0 * @since 3.0
*/ */
public static final String CONFIG_KEY_RENAMES = "renames"; public static final String CONFIG_KEY_RENAMES = "renames";
/** /**
* The "prune" key * The "prune" key
*
* @since 3.3 * @since 3.3
*/ */
public static final String CONFIG_KEY_PRUNE = "prune"; public static final String CONFIG_KEY_PRUNE = "prune";

Loading…
Cancel
Save