diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2023-09-16 22:14:49 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2023-09-25 22:06:13 +0200 |
commit | 84ced89dc3d3163535cb170f4a6da49b60a51c3f (patch) | |
tree | 036d51e581ce2be3b7d3390fe620c149be171af4 /org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/DiffToolConfig.java | |
parent | d56ae55c836968e09d1ad887d4180ff6bccc5be7 (diff) | |
download | jgit-84ced89dc3d3163535cb170f4a6da49b60a51c3f.tar.gz jgit-84ced89dc3d3163535cb170f4a6da49b60a51c3f.zip |
[errorprone] Add missing javadoc summary
see https://google.github.io/styleguide/javaguide.html#s7.2-summary-fragment
Change-Id: Iaf4a6b55d4e4c59b7a2da3451164abb1bb47d4a1
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/DiffToolConfig.java')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/DiffToolConfig.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/DiffToolConfig.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/DiffToolConfig.java index c8b04f90f2..e74337a8a1 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/DiffToolConfig.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/diffmergetool/DiffToolConfig.java @@ -75,6 +75,8 @@ public class DiffToolConfig { } /** + * Get default tool name + * * @return the default diff tool name (diff.tool) */ public String getDefaultToolName() { @@ -82,6 +84,8 @@ public class DiffToolConfig { } /** + * Get default GUI tool name + * * @return the default GUI diff tool name (diff.guitool) */ public String getDefaultGuiToolName() { @@ -89,6 +93,8 @@ public class DiffToolConfig { } /** + * Get difftool.prompt option + * * @return the diff tool "prompt" option (difftool.prompt) */ public boolean isPrompt() { @@ -96,6 +102,8 @@ public class DiffToolConfig { } /** + * Get difftool.trustExitCode option + * * @return the diff tool "trust exit code" option (difftool.trustExitCode) */ public boolean isTrustExitCode() { @@ -103,6 +111,8 @@ public class DiffToolConfig { } /** + * Get tools map + * * @return the tools map */ public Map<String, ExternalDiffTool> getTools() { @@ -110,6 +120,8 @@ public class DiffToolConfig { } /** + * Get tool names + * * @return the tool names */ public Set<String> getToolNames() { |