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.lfs | |
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.lfs')
-rw-r--r-- | org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/Protocol.java | 2 | ||||
-rw-r--r-- | org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/internal/LfsConnectionFactory.java | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/Protocol.java b/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/Protocol.java index f3edf86cf0..bcfd6e6576 100644 --- a/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/Protocol.java +++ b/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/Protocol.java @@ -131,6 +131,8 @@ public interface Protocol { String OBJECTS_LFS_ENDPOINT = "/objects/batch"; //$NON-NLS-1$ /** + * Gson instance for handling this protocol + * * @return a {@link Gson} instance suitable for handling this * {@link Protocol} * diff --git a/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/internal/LfsConnectionFactory.java b/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/internal/LfsConnectionFactory.java index 08fec341a8..d7d8d63775 100644 --- a/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/internal/LfsConnectionFactory.java +++ b/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/internal/LfsConnectionFactory.java @@ -253,6 +253,8 @@ public class LfsConnectionFactory { } /** + * Create request that can be serialized to JSON + * * @param operation * the operation to perform, e.g. Protocol.OPERATION_DOWNLOAD * @param resources |