From e336e536a8dc7cc797c26c333c7b0380feb14a64 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Wed, 26 Apr 2023 16:44:49 +0200 Subject: [PATCH] Javadoc: Insert

tags to preserve newlines --- sop-java/src/main/java/sop/SOP.java | 12 ++++++------ sop-java/src/main/java/sop/SigningResult.java | 2 +- .../src/main/java/sop/exception/SOPGPException.java | 2 +- .../src/main/java/sop/util/ProxyOutputStream.java | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/sop-java/src/main/java/sop/SOP.java b/sop-java/src/main/java/sop/SOP.java index c74c6cd..804cd28 100644 --- a/sop-java/src/main/java/sop/SOP.java +++ b/sop-java/src/main/java/sop/SOP.java @@ -54,7 +54,7 @@ public interface SOP { /** * Create detached signatures. * Customize the operation using the builder {@link DetachedSign}. - * + *

* If you want to sign a message inline, use {@link #inlineSign()} instead. * * @return builder instance @@ -66,7 +66,7 @@ public interface SOP { /** * Create detached signatures. * Customize the operation using the builder {@link DetachedSign}. - * + *

* If you want to sign a message inline, use {@link #inlineSign()} instead. * * @return builder instance @@ -75,7 +75,7 @@ public interface SOP { /** * Sign a message using inline signatures. - * + *

* If you need to create detached signatures, use {@link #detachedSign()} instead. * * @return builder instance @@ -85,7 +85,7 @@ public interface SOP { /** * Verify detached signatures. * Customize the operation using the builder {@link DetachedVerify}. - * + *

* If you need to verify an inline-signed message, use {@link #inlineVerify()} instead. * * @return builder instance @@ -97,7 +97,7 @@ public interface SOP { /** * Verify detached signatures. * Customize the operation using the builder {@link DetachedVerify}. - * + *

* If you need to verify an inline-signed message, use {@link #inlineVerify()} instead. * * @return builder instance @@ -106,7 +106,7 @@ public interface SOP { /** * Verify signatures of an inline-signed message. - * + *

* If you need to verify detached signatures over a message, use {@link #detachedVerify()} instead. * * @return builder instance diff --git a/sop-java/src/main/java/sop/SigningResult.java b/sop-java/src/main/java/sop/SigningResult.java index 2cb142d..1ea1ba8 100644 --- a/sop-java/src/main/java/sop/SigningResult.java +++ b/sop-java/src/main/java/sop/SigningResult.java @@ -19,7 +19,7 @@ public final class SigningResult { * Return a string identifying the digest mechanism used to create the signed message. * This is useful for setting the micalg= parameter for the multipart/signed * content type of a PGP/MIME object as described in section 5 of [RFC3156]. - * + *

* If more than one signature was generated and different digest mechanisms were used, * the value of the micalg object is an empty string. * diff --git a/sop-java/src/main/java/sop/exception/SOPGPException.java b/sop-java/src/main/java/sop/exception/SOPGPException.java index f044fa6..1d13065 100644 --- a/sop-java/src/main/java/sop/exception/SOPGPException.java +++ b/sop-java/src/main/java/sop/exception/SOPGPException.java @@ -337,7 +337,7 @@ public abstract class SOPGPException extends RuntimeException { /** * Exception that gets thrown if a special designator (starting with @) is given, but the filesystem contains * a file matching the designator. - * + *

* E.g.

@ENV:FOO
is given, but
./@ENV:FOO
exists on the filesystem. */ public static class AmbiguousInput extends SOPGPException { diff --git a/sop-java/src/main/java/sop/util/ProxyOutputStream.java b/sop-java/src/main/java/sop/util/ProxyOutputStream.java index 0559e8f..ed24fc2 100644 --- a/sop-java/src/main/java/sop/util/ProxyOutputStream.java +++ b/sop-java/src/main/java/sop/util/ProxyOutputStream.java @@ -12,7 +12,7 @@ import java.io.OutputStream; * {@link OutputStream} that buffers data being written into it, until its underlying output stream is being replaced. * At that point, first all the buffered data is being written to the underlying stream, followed by any successive * data that may get written to the {@link ProxyOutputStream}. - * + *

* This class is useful if we need to provide an {@link OutputStream} at one point in time when the final * target output stream is not yet known. */