Skip to content

Commit c775f91

Browse files
committed
Javadoc: Empty Javadoc line before the 1st tag.
1 parent 3caf847 commit c775f91

File tree

6 files changed

+7
-0
lines changed

6 files changed

+7
-0
lines changed

src/main/java/org/apache/commons/crypto/OpenSslInfoNative.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ final class OpenSslInfoNative {
3838
/**
3939
* Return the path to the loaded dynamic linked library.
4040
* [Currently not implemented on Windows]
41+
*
4142
* @return the path to the library that was loaded; may be {@code null}.
4243
*/
4344
public static native String DLLPath();

src/main/java/org/apache/commons/crypto/cipher/CryptoCipherFactory.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ public enum CipherProvider {
7878

7979
/**
8080
* The private constructor.
81+
*
8182
* @param klass the Class of CryptoCipher
8283
*/
8384
CipherProvider(final Class<? extends CryptoCipher> klass) {

src/main/java/org/apache/commons/crypto/jna/OpenSslJnaCryptoRandom.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ public void close() {
105105

106106
/**
107107
* Closes the rdrand engine.
108+
*
108109
* @param closing {@code true} when called while closing.
109110
*/
110111
private void closeRdrandEngine(final boolean closing) {

src/main/java/org/apache/commons/crypto/jna/OpenSslMacOS.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ class OpenSslMacOS {
4242

4343
/**
4444
* Check if can load library OK
45+
*
4546
* @param path
4647
* @return null if OK, else error message
4748
*/

src/main/java/org/apache/commons/crypto/random/CryptoRandomFactory.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ public enum RandomProvider {
8888

8989
/**
9090
* The private constructor.
91+
*
9192
* @param klass the Class of CryptoRandom
9293
*/
9394
RandomProvider(final Class<? extends CryptoRandom> klass) {

src/main/java/org/apache/commons/crypto/utils/Utils.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ public static CryptoCipher getCipherInstance(final String transformation, final
177177
* Gets a properties instance that defaults to the System Properties
178178
* plus any other properties found in the file
179179
* {@link #SYSTEM_PROPERTIES_FILE}
180+
*
180181
* @return a Properties instance with defaults
181182
*/
182183
public static Properties getDefaultProperties() {
@@ -185,6 +186,7 @@ public static Properties getDefaultProperties() {
185186

186187
/**
187188
* Gets the properties merged with default properties.
189+
*
188190
* @param newProp User-defined properties
189191
* @return User-defined properties with the default properties
190192
*/

0 commit comments

Comments
 (0)