]> source.dussan.org Git - jgit.git/commitdiff
Fixes Javadoc error in org.eclipse.jgit created with I59539ac 29/89529/4
authorLars Vogel <Lars.Vogel@vogella.com>
Wed, 25 Jan 2017 16:05:19 +0000 (17:05 +0100)
committerAndrey Loskutov <loskutov@gmx.de>
Wed, 25 Jan 2017 16:40:59 +0000 (12:40 -0400)
Adds the param information to the private method. These are generated
via tooltip to resolve the compile errors.

Bug: 511043
Change-Id: I9ba551978eab750326d1a067b296e3ae93925871
Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/GC.java
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/ObjectDirectoryInserter.java

index 1caa35f13f0a0fd39ffe46a8473794f728c84141..04973f180aded96dc42359a18705cdd1883db30d 100644 (file)
@@ -215,6 +215,12 @@ public class GC {
        /**
         * Loosen objects in a pack file which are not also in the newly-created
         * pack files.
+        *
+        * @param inserter
+        * @param reader
+        * @param pack
+        * @param existing
+        * @throws IOException
         */
        private void loosen(ObjectDirectoryInserter inserter, ObjectReader reader, PackFile pack, HashSet<ObjectId> existing)
                        throws IOException {
index ca70c4979ea653ea53b5af8183f5d13a5ed3cdce..a510431f3732bd9ece9e13459b7657a193c64fcb 100644 (file)
@@ -90,9 +90,17 @@ class ObjectDirectoryInserter extends ObjectInserter {
        }
 
        /**
-        * Insert a loose object into the database.  If createDuplicate is
-        * true, write the loose object even if we already have it in the
-        * loose or packed ODB.
+        * Insert a loose object into the database. If createDuplicate is true,
+        * write the loose object even if we already have it in the loose or packed
+        * ODB.
+        *
+        * @param type
+        * @param data
+        * @param off
+        * @param len
+        * @param createDuplicate
+        * @return ObjectId
+        * @throws IOException
         */
        private ObjectId insert(
                        int type, byte[] data, int off, int len, boolean createDuplicate)
@@ -113,9 +121,16 @@ class ObjectDirectoryInserter extends ObjectInserter {
        }
 
        /**
-        * Insert a loose object into the database.  If createDuplicate is
-        * true, write the loose object even if we already have it in the
-        * loose or packed ODB.
+        * Insert a loose object into the database. If createDuplicate is true,
+        * write the loose object even if we already have it in the loose or packed
+        * ODB.
+        *
+        * @param type
+        * @param len
+        * @param is
+        * @param createDuplicate
+        * @return ObjectId
+        * @throws IOException
         */
        ObjectId insert(int type, long len, InputStream is, boolean createDuplicate)
                        throws IOException {