diff options
author | Michael Koch <konqueror@gmx.de> | 2004-11-06 16:32:56 +0000 |
---|---|---|
committer | Mark Wielaard <mark@gcc.gnu.org> | 2004-11-06 16:32:56 +0000 |
commit | c2e999dfeb7680617c0febb42299ebfac01a6bf7 (patch) | |
tree | aff38876d319e5c2226533f8778d4e434e4a7110 /libjava/java/security/spec | |
parent | 08d930240971fcc6d7b8023aed2f367581669df9 (diff) | |
download | gcc-c2e999dfeb7680617c0febb42299ebfac01a6bf7.zip gcc-c2e999dfeb7680617c0febb42299ebfac01a6bf7.tar.gz gcc-c2e999dfeb7680617c0febb42299ebfac01a6bf7.tar.bz2 |
StringBuffer.java, [...]: Removed redundant and reordered modifiers.
2004-11-06 Michael Koch <konqueror@gmx.de>
* java/lang/StringBuffer.java,
java/lang/Throwable.java,
java/security/spec/DSAParameterSpec.java,
java/util/zip/ZipEntry.java,
java/util/zip/ZipFile.java,
java/util/zip/ZipInputStream.java,
java/util/zip/ZipOutputStream.java:
Removed redundant and reordered modifiers.
From-SVN: r90177
Diffstat (limited to 'libjava/java/security/spec')
-rw-r--r-- | libjava/java/security/spec/DSAParameterSpec.java | 55 |
1 files changed, 28 insertions, 27 deletions
diff --git a/libjava/java/security/spec/DSAParameterSpec.java b/libjava/java/security/spec/DSAParameterSpec.java index 5c7911f..337dc94 100644 --- a/libjava/java/security/spec/DSAParameterSpec.java +++ b/libjava/java/security/spec/DSAParameterSpec.java @@ -37,16 +37,17 @@ exception statement from your version. */ package java.security.spec; -import java.security.interfaces.DSAParams; + import java.math.BigInteger; +import java.security.interfaces.DSAParams; /** - DSA Parameter class Specification. Used to maintain the DSA - Parameters. - - @since JDK 1.2 - - @author Mark Benvenuto + * DSA Parameter class Specification. Used to maintain the DSA + * Parameters. + * + * @since 1.2 + * + * @author Mark Benvenuto */ public class DSAParameterSpec implements AlgorithmParameterSpec, DSAParams { @@ -55,46 +56,46 @@ public class DSAParameterSpec implements AlgorithmParameterSpec, DSAParams private BigInteger g = null; /** - Constructs a new DSAParameterSpec with the specified p, q, and g. - - @param p the prime - @param q the sub-prime - @param g the base - */ + * Constructs a new DSAParameterSpec with the specified p, q, and g. + * + * @param p the prime + * @param q the sub-prime + * @param g the base + */ public DSAParameterSpec(BigInteger p, BigInteger q, BigInteger g) { this.p = p; this.q = q; this.g = g; } + /** - Returns p for the DSA algorithm. - - @return Returns the requested BigInteger - */ + * Returns p for the DSA algorithm. + * + * @return Returns the requested BigInteger + */ public BigInteger getP() { return this.p; } /** - Returns p for the DSA algorithm. - - @return Returns the requested BigInteger - */ + * Returns p for the DSA algorithm. + * + * @return Returns the requested BigInteger + */ public BigInteger getQ() { return this.q; } /** - Returns g for the DSA algorithm. - - @return Returns the requested BigInteger - */ + * Returns g for the DSA algorithm. + * + * @return Returns the requested BigInteger + */ public BigInteger getG() { return this.g; } - -} +}
\ No newline at end of file |