--- old/src/share/classes/java/security/spec/DSAPrivateKeySpec.java 2013-06-21 17:34:08.421831443 -0700 +++ new/src/share/classes/java/security/spec/DSAPrivateKeySpec.java 2013-06-21 17:34:08.261831446 -0700 @@ -69,36 +69,36 @@ } /** - * Returns the private key x. + * Returns the private key {@code x}. * - * @return the private key x. + * @return the private key {@code x}. */ public BigInteger getX() { return this.x; } /** - * Returns the prime p. + * Returns the prime {@code p}. * - * @return the prime p. + * @return the prime {@code p}. */ public BigInteger getP() { return this.p; } /** - * Returns the sub-prime q. + * Returns the sub-prime {@code q}. * - * @return the sub-prime q. + * @return the sub-prime {@code q}. */ public BigInteger getQ() { return this.q; } /** - * Returns the base g. + * Returns the base {@code g}. * - * @return the base g. + * @return the base {@code g}. */ public BigInteger getG() { return this.g;