Browse Source

Add missing @since tags in SubmoduleWalk

Change-Id: Ica34e6709a34977422fd528cbd4df0044403e45d
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-3.6
Matthias Sohn 10 years ago
parent
commit
8a398a9147
  1. 4
      org.eclipse.jgit/src/org/eclipse/jgit/submodule/SubmoduleWalk.java

4
org.eclipse.jgit/src/org/eclipse/jgit/submodule/SubmoduleWalk.java

@ -80,6 +80,8 @@ public class SubmoduleWalk {
/** /**
* The values for the config param submodule.<name>.ignore * The values for the config param submodule.<name>.ignore
*
* @since 3.6
*/ */
public enum IgnoreSubmoduleMode { public enum IgnoreSubmoduleMode {
/** /**
@ -461,6 +463,7 @@ public class SubmoduleWalk {
* @return <code>true</code> if the repo contains a .gitmodules file * @return <code>true</code> if the repo contains a .gitmodules file
* @throws IOException * @throws IOException
* @throws CorruptObjectException * @throws CorruptObjectException
* @since 3.6
*/ */
public static boolean containsGitModulesFile(Repository repository) public static boolean containsGitModulesFile(Repository repository)
throws IOException { throws IOException {
@ -653,6 +656,7 @@ public class SubmoduleWalk {
* @return ignore value * @return ignore value
* @throws ConfigInvalidException * @throws ConfigInvalidException
* @throws IOException * @throws IOException
* @since 3.6
*/ */
public IgnoreSubmoduleMode getModulesIgnore() throws IOException, public IgnoreSubmoduleMode getModulesIgnore() throws IOException,
ConfigInvalidException { ConfigInvalidException {

Loading…
Cancel
Save