Skip to content

Commit 772a7ae

Browse files
committed
Fix JavaDoc formatting
1 parent 670448f commit 772a7ae

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/main/java/com/bettercloud/vault/VaultConfig.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ public class VaultConfig implements Serializable {
6060
* constructing a <code>VaultConfig</code> instance using the builder pattern approach rather than the convenience
6161
* constructor. This method's access level was therefore originally set to <code>protected</code>, but was bumped
6262
* up to <code>public</code> due to community request for the ability to disable environment loading altogether
63-
* (see https://github.com/BetterCloud/vault-java-driver/issues/77).
64-
* <p>
65-
* Note that if you do override this, however, then obviously all of the environment checking discussed in the
66-
* documentation becomes disabled.
63+
* (see https://github.com/BetterCloud/vault-java-driver/issues/77).</p>
64+
*
65+
* <p>Note that if you do override this, however, then obviously all of the environment checking discussed in the
66+
* documentation becomes disabled.</p>
6767
*
6868
* @param environmentLoader An environment variable loader implementation (presumably a mock)
6969
* @return This object, with environmentLoader populated, ready for additional builder-pattern method calls or else finalization with the build() method

src/test-integration/java/com/bettercloud/vault/api/LeasesTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* <p>In the future, we may be shifting to an integration testing approach that uses a "real" Vault server
3030
* instance, running in a Docker container (see: https://github.com/BetterCloud/vault-java-driver/pull/25). At
3131
* that time, these tests should be re-visited and better implemented.</p>
32-
* <p>
32+
*
3333
* TODO: Revisit, now that we're using testcontainers
3434
*/
3535
public class LeasesTests {

src/test-integration/java/com/bettercloud/vault/util/VaultContainer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ public Statement apply(final Statement base, final Description description) {
9090
* when placed inside of the constructor or {@link this#apply(Statement, Description)} methods here, presumably
9191
* because the Docker container spawned by TestContainers is not ready to accept commonds until after those
9292
* methods complete.
93-
* <p>
94-
* This method initializes the Vault server, capturing the unseal key and root token that are displayed on the
93+
*
94+
* <p>This method initializes the Vault server, capturing the unseal key and root token that are displayed on the
9595
* console. It then uses the key to unseal the Vault instance, and stores the token in a member field so it
96-
* will be available to other methods.
96+
* will be available to other methods.</p>
9797
*
9898
* @throws IOException
9999
* @throws InterruptedException

0 commit comments

Comments
 (0)