]> source.dussan.org Git - jgit.git/commitdiff
Remove redundant @since tags in new signed push classes 46/50446/1
authorDave Borowitz <dborowitz@google.com>
Thu, 18 Jun 2015 14:18:38 +0000 (10:18 -0400)
committerDave Borowitz <dborowitz@google.com>
Thu, 18 Jun 2015 14:19:40 +0000 (10:19 -0400)
Change-Id: I9f57318a59f668906b80f67230d36ba6439fc7b4

org.eclipse.jgit/src/org/eclipse/jgit/transport/PushCertificateIdent.java
org.eclipse.jgit/src/org/eclipse/jgit/transport/SignedPushConfig.java

index c7618b0e6314634793d61719f97c4029f03d02ea..871a6f752b1cfa48e41a473ea1e4bc2cbe95424b 100644 (file)
@@ -92,7 +92,6 @@ public class PushCertificateIdent {
         * @param str
         *            string to parse.
         * @return identity, never null.
-        * @since 4.1
         */
        public static PushCertificateIdent parse(String str) {
                MutableInteger p = new MutableInteger();
@@ -178,16 +177,12 @@ public class PushCertificateIdent {
         * must be encoded as UTF-8.
         *
         * @return the raw string.
-        * @since 4.1
         */
        public String getRaw() {
                return raw;
        }
 
-       /**
-        * @return the OpenPGP User ID, which may be any string.
-        * @since 4.1
-        */
+       /** @return the OpenPGP User ID, which may be any string. */
        public String getUserId() {
                return userId;
        }
@@ -196,7 +191,6 @@ public class PushCertificateIdent {
         * @return the name portion of the User ID. If no email address would be
         *         parsed by {@link #getEmailAddress()}, returns the full User ID with
         *         spaces trimmed.
-        * @since 4.1
         */
        public String getName() {
                int nameEnd = userId.indexOf('<');
@@ -217,7 +211,6 @@ public class PushCertificateIdent {
        /**
         * @return the email portion of the User ID, if one was successfully parsed
         *         from {@link #getUserId()}, or null.
-        * @since 4.1
         */
        public String getEmailAddress() {
                int emailBegin = userId.indexOf('<');
@@ -231,17 +224,13 @@ public class PushCertificateIdent {
                return userId.substring(emailBegin + 1, emailEnd);
        }
 
-       /**
-        * @return the timestamp of the identity.
-        * @since 4.1
-        */
+       /** @return the timestamp of the identity. */
        public Date getWhen() {
                return new Date(when);
        }
 
        /**
         * @return this person's declared time zone; null if the timezone is unknown.
-        * @since 4.1
         */
        public TimeZone getTimeZone() {
                return PersonIdent.getTimeZone(tzOffset);
@@ -250,7 +239,6 @@ public class PushCertificateIdent {
        /**
         * @return this person's declared time zone as minutes east of UTC. If the
         *         timezone is to the west of UTC it is negative.
-        * @since 4.1
         */
        public int getTimeZoneOffset() {
                return tzOffset;
index ad2a9969ff9462b531f7d4b07a3253ded84c68e2..d3c5a97434c69f14ff53408c107e9e7576934331 100644 (file)
@@ -52,11 +52,7 @@ import org.eclipse.jgit.lib.Config.SectionParser;
  * @since 4.1
  */
 public class SignedPushConfig {
-       /**
-        * Key for {@link Config#get(SectionParser)}.
-        *
-        * @since 4.1
-        */
+       /** Key for {@link Config#get(SectionParser)}. */
        public static final SectionParser<SignedPushConfig> KEY =
                        new SectionParser<SignedPushConfig>() {
                public SignedPushConfig parse(Config cfg) {
@@ -67,11 +63,7 @@ public class SignedPushConfig {
        String certNonceSeed;
        int certNonceSlopLimit;
 
-       /**
-        * Create a new config with default values disabling push verification.
-        *
-        * @since 4.1
-        */
+       /** Create a new config with default values disabling push verification. */
        public SignedPushConfig() {
        }
 
@@ -87,16 +79,12 @@ public class SignedPushConfig {
         *
         * @param seed
         *            new seed value.
-        * @since 4.1
         */
        public void setCertNonceSeed(String seed) {
                certNonceSeed = seed;
        }
 
-       /**
-        * @return the configured seed used by the nonce verifier.
-        * @since 4.1
-        */
+       /** @return the configured seed used by the nonce verifier. */
        public String getCertNonceSeed() {
                return certNonceSeed;
        }
@@ -108,16 +96,12 @@ public class SignedPushConfig {
         *
         * @param limit
         *            new limit in seconds.
-        * @since 4.1
         */
        public void setCertNonceSlopLimit(int limit) {
                certNonceSlopLimit = limit;
        }
 
-       /**
-        * @return the configured nonce slop limit.
-        * @since 4.1
-        */
+       /** @return the configured nonce slop limit. */
        public int getCertNonceSlopLimit() {
                return certNonceSlopLimit;
        }