diff options
author | Alexa Panfil <alexapizza@google.com> | 2020-09-24 19:28:52 +0000 |
---|---|---|
committer | Alexa Panfil <alexapizza@google.com> | 2020-09-24 19:41:55 +0000 |
commit | 597a6bc7ecc98d78be44c605bb9ff5baf95e1ead (patch) | |
tree | 89bd141a849b0d7a7332ab2d26e07b3afb15e6c2 | |
parent | 3c5e159eaea16216c91316af40166c44de09dbec (diff) | |
download | jgit-597a6bc7ecc98d78be44c605bb9ff5baf95e1ead.tar.gz jgit-597a6bc7ecc98d78be44c605bb9ff5baf95e1ead.zip |
Make Javadoc consistent for PackStatistics fields
Change-Id: I53d4072174e9fec92bff7c0225aa7470d8d39d05
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackStatistics.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackStatistics.java b/org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackStatistics.java index e5ed080618..4d18337fae 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackStatistics.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackStatistics.java @@ -274,12 +274,15 @@ public class PackStatistics { public long timeWriting; /** Time in ms spent checking reachability. + * * @since 5.10 */ public long reachabilityCheckDuration; /** Number of trees traversed in the walk when writing the pack. - * @since 5.4*/ + * + * @since 5.4 + */ public long treesTraversed; /** |