diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2014-11-03 23:49:36 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2014-11-03 23:49:36 +0100 |
commit | 8a398a91477b5e03fcb1dfb2d96e066b5bf3434c (patch) | |
tree | a60036f737d0b399737d60c0706e0ccf442981c2 /org.eclipse.jgit | |
parent | c017ac4c85cab7449a49b681843b9bc33e54d2b6 (diff) | |
download | jgit-8a398a91477b5e03fcb1dfb2d96e066b5bf3434c.tar.gz jgit-8a398a91477b5e03fcb1dfb2d96e066b5bf3434c.zip |
Add missing @since tags in SubmoduleWalk
Change-Id: Ica34e6709a34977422fd528cbd4df0044403e45d
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/submodule/SubmoduleWalk.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/submodule/SubmoduleWalk.java b/org.eclipse.jgit/src/org/eclipse/jgit/submodule/SubmoduleWalk.java index 62621cc733..5db3378b78 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/submodule/SubmoduleWalk.java +++ b/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 + * + * @since 3.6 */ public enum IgnoreSubmoduleMode { /** @@ -461,6 +463,7 @@ public class SubmoduleWalk { * @return <code>true</code> if the repo contains a .gitmodules file * @throws IOException * @throws CorruptObjectException + * @since 3.6 */ public static boolean containsGitModulesFile(Repository repository) throws IOException { @@ -653,6 +656,7 @@ public class SubmoduleWalk { * @return ignore value * @throws ConfigInvalidException * @throws IOException + * @since 3.6 */ public IgnoreSubmoduleMode getModulesIgnore() throws IOException, ConfigInvalidException { |