Browse Source

Fix wrong @since tags introduced by 1beb3ccd

1beb3ccd1e was submitted in 4.6.0-SNAPSHOT

Change-Id: I33e027dbd0995ba36491bd9e2d4b3c84f9f0abd6
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-4.6
Matthias Sohn 8 years ago
parent
commit
b03be9a3ea
  1. 2
      org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java
  2. 2
      org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java
  3. 2
      org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivedPackStatistics.java

2
org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java

@ -1121,7 +1121,7 @@ public abstract class BaseReceivePack {
* called after {@link #receivePack} is called.
*
* @return ReceivedPackStatistics
* @since 4.5
* @since 4.6
*/
@Nullable
public ReceivedPackStatistics getReceivedPackStatistics() {

2
org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java

@ -477,7 +477,7 @@ public abstract class PackParser {
* This should only be called after pack parsing is finished.
*
* @return {@link ReceivedPackStatistics}
* @since 4.5
* @since 4.6
*/
public ReceivedPackStatistics getReceivedPackStatistics() {
return stats.build();

2
org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivedPackStatistics.java

@ -48,7 +48,7 @@ import org.eclipse.jgit.lib.Constants;
/**
* Statistics about {@link PackParser}.
*
* @since 4.5
* @since 4.6
*/
public class ReceivedPackStatistics {
private long numBytesRead;

Loading…
Cancel
Save