--- old/src/share/classes/java/security/spec/DSAPublicKeySpec.java 2013-06-21 17:34:08.825831434 -0700 +++ new/src/share/classes/java/security/spec/DSAPublicKeySpec.java 2013-06-21 17:34:08.665831438 -0700 @@ -69,36 +69,36 @@ } /** - * Returns the public key y. + * Returns the public key {@code y}. * - * @return the public key y. + * @return the public key {@code y}. */ public BigInteger getY() { return this.y; } /** - * 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;