# HG changeset patch # User darcy # Date 1386100338 28800 # Node ID abc02575919ccb214d9e549a16c523e157c3b17c # Parent df1d668d6e2333a00f980aa385241b3c816278d6 8029475: Fix more doclint issues in javax.security Reviewed-by: juh diff -r df1d668d6e23 -r abc02575919c jdk/src/share/classes/javax/crypto/Cipher.java --- a/jdk/src/share/classes/javax/crypto/Cipher.java Tue Dec 03 11:37:25 2013 -0800 +++ b/jdk/src/share/classes/javax/crypto/Cipher.java Tue Dec 03 11:52:18 2013 -0800 @@ -62,17 +62,17 @@ * algorithm (e.g., DES), and may be followed by a feedback mode and * padding scheme. * - *

A transformation is of the form:

+ *

A transformation is of the form: * *

* *

(in the latter case, * provider-specific default values for the mode and padding scheme are used). - * For example, the following is a valid transformation:

+ * For example, the following is a valid transformation: * *

  *     Cipher c = Cipher.getInstance("DES/CBC/PKCS5Padding");
diff -r df1d668d6e23 -r abc02575919c jdk/src/share/classes/javax/crypto/CipherSpi.java
--- a/jdk/src/share/classes/javax/crypto/CipherSpi.java	Tue Dec 03 11:37:25 2013 -0800
+++ b/jdk/src/share/classes/javax/crypto/CipherSpi.java	Tue Dec 03 11:52:18 2013 -0800
@@ -62,17 +62,17 @@
  * algorithm (e.g., DES), and may be followed by a feedback mode and
  * padding scheme.
  *
- * 

A transformation is of the form:

+ *

A transformation is of the form: * *

* *

(in the latter case, * provider-specific default values for the mode and padding scheme are used). - * For example, the following is a valid transformation:

+ * For example, the following is a valid transformation: * *

  *     Cipher c = Cipher.getInstance("DES/CBC/PKCS5Padding");
@@ -129,7 +129,7 @@
  * DES/CBC/PKCS5Padding, one that implements
  * DES/CFB/PKCS5Padding, and yet another one that implements
  * DES/OFB/PKCS5Padding. That provider would have the following
- * Cipher properties in its master class:

+ * Cipher properties in its master class: * *