From ee598707ba56bd7e318779a1e20c8365b6e9bcb6 Mon Sep 17 00:00:00 2001 From: Sai Asish Y Date: Fri, 17 Apr 2026 01:13:17 -0700 Subject: [PATCH] Fix 'occured' -> 'occurred' typos in 2 files - jackrabbit-core/.../BLOBStore.java: three @throws Javadoc tags on put / get / remove. - jackrabbit-jcr-commons/.../ValueHelper.java: three @throws Javadoc tags on the two serialize() overloads. No functional changes. Signed-off-by: Sai Asish Y --- .../apache/jackrabbit/core/persistence/util/BLOBStore.java | 6 +++--- .../main/java/org/apache/jackrabbit/value/ValueHelper.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/persistence/util/BLOBStore.java b/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/persistence/util/BLOBStore.java index 2d64639d64a..93c81bd817a 100644 --- a/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/persistence/util/BLOBStore.java +++ b/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/persistence/util/BLOBStore.java @@ -48,7 +48,7 @@ public interface BLOBStore { * {@link #createId(PropertyId, int)} * @param in stream containing the BLOB data * @param size size of the BLOB data - * @throws Exception if an error occured + * @throws Exception if an error occurred */ void put(String blobId, InputStream in, long size) throws Exception; @@ -58,7 +58,7 @@ public interface BLOBStore { * @param blobId identifier of the BLOB data as returned by * {@link #createId(PropertyId, int)} * @return an input stream that delivers the BLOB data - * @throws Exception if an error occured + * @throws Exception if an error occurred */ InputStream get(String blobId) throws Exception; @@ -70,7 +70,7 @@ public interface BLOBStore { * @return true if BLOB data with the given id exists and has * been successfully removed, false if there's no BLOB * data with the given id. - * @throws Exception if an error occured + * @throws Exception if an error occurred */ boolean remove(String blobId) throws Exception; } diff --git a/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/value/ValueHelper.java b/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/value/ValueHelper.java index 17d202bb3cd..ad934a70707 100644 --- a/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/value/ValueHelper.java +++ b/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/value/ValueHelper.java @@ -696,7 +696,7 @@ public static Value[] copy(Value[] srcValues, ValueFactory factory) * as "_x0020_" within he output string. * @return a string representation of the given value. * @throws IllegalStateException if the given value is in an illegal state - * @throws RepositoryException if an error occured during the serialization. + * @throws RepositoryException if an error occurred during the serialization. */ public static String serialize(Value value, boolean encodeBlanks) throws IllegalStateException, RepositoryException { @@ -722,9 +722,9 @@ public static String serialize(Value value, boolean encodeBlanks) * @param enforceBase64 if true, base64 encoding will always be used * @param writer writer to output the encoded data * @throws IllegalStateException if the given value is in an illegal state - * @throws IOException if an i/o error occured during the + * @throws IOException if an i/o error occurred during the * serialization - * @throws RepositoryException if an error occured during the serialization. + * @throws RepositoryException if an error occurred during the serialization. */ public static void serialize(Value value, boolean encodeBlanks, boolean enforceBase64, Writer writer)