Browse Source

Silence API errors and add missing @since tags caused by 175e6654

Change-Id: If55acad84015f988f1e974bc19c426828b98822b
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-5.4
Matthias Sohn 6 years ago
parent
commit
88b56ff1e9
  1. 16
      org.eclipse.jgit/.settings/.api_filters
  2. 3
      org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackStatistics.java

16
org.eclipse.jgit/.settings/.api_filters

@ -22,6 +22,22 @@
</message_arguments>
</filter>
</resource>
<resource path="src/org/eclipse/jgit/revwalk/ObjectWalk.java" type="org.eclipse.jgit.revwalk.ObjectWalk">
<filter comment="ignore the risk subclasses could define the same field and cause a name clash" id="336658481">
<message_arguments>
<message_argument value="org.eclipse.jgit.revwalk.ObjectWalk"/>
<message_argument value="SIMPLE_VISITATION_POLICY"/>
</message_arguments>
</filter>
</resource>
<resource path="src/org/eclipse/jgit/storage/pack/PackStatistics.java" type="org.eclipse.jgit.storage.pack.PackStatistics$Accumulator">
<filter comment="ignore the risk subclasses could define the same field and cause a name clash" id="336658481">
<message_arguments>
<message_argument value="org.eclipse.jgit.storage.pack.PackStatistics.Accumulator"/>
<message_argument value="treesTraversed"/>
</message_arguments>
</filter>
</resource>
<resource path="src/org/eclipse/jgit/transport/Transport.java" type="org.eclipse.jgit.transport.Transport">
<filter comment="Marked as final since overriding a deprecated stub is likely a mistake" id="421654647">
<message_arguments>

3
org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackStatistics.java

@ -266,7 +266,8 @@ public class PackStatistics {
/** Time in ms spent writing the pack. */
public long timeWriting;
/** Number of trees traversed in the walk when writing the pack. */
/** Number of trees traversed in the walk when writing the pack.
* @since 5.4*/
public long treesTraversed;
/**

Loading…
Cancel
Save