From 59e056ff1fd1d7d5524e55bc71fc0ff9928cec09 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Thu, 18 Jan 2024 10:16:46 +0100 Subject: [PATCH] [jOOQ/jOOQ#16105] Wrong Javadoc in RTRIM() and LTRIM() --- jOOQ/src/main/java/org/jooq/impl/DSL.java | 24 +++++++++++------------ jOOQ/src/main/java/org/jooq/impl/QOM.java | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/impl/DSL.java b/jOOQ/src/main/java/org/jooq/impl/DSL.java index 82571cd51e..bfcfca4dbe 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DSL.java +++ b/jOOQ/src/main/java/org/jooq/impl/DSL.java @@ -19420,7 +19420,7 @@ public class DSL { /** * The LTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the left side of a string. * * @param string The string to be trimmed. * @param characters The characters to be trimmed. @@ -19434,7 +19434,7 @@ public class DSL { /** * The LTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the left side of a string. * * @param string The string to be trimmed. * @param characters The characters to be trimmed. @@ -19448,7 +19448,7 @@ public class DSL { /** * The LTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the left side of a string. * * @param string The string to be trimmed. * @param characters The characters to be trimmed. @@ -19462,7 +19462,7 @@ public class DSL { /** * The LTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the left side of a string. * * @param string The string to be trimmed. * @param characters The characters to be trimmed. @@ -19476,7 +19476,7 @@ public class DSL { /** * The LTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the left side of a string. * * @param string The string to be trimmed. */ @@ -19489,7 +19489,7 @@ public class DSL { /** * The LTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the left side of a string. * * @param string The string to be trimmed. */ @@ -20188,7 +20188,7 @@ public class DSL { /** * The RTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the right side of a string. * * @param string The string to be trimmed. * @param characters The characters to be trimmed. @@ -20202,7 +20202,7 @@ public class DSL { /** * The RTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the right side of a string. * * @param string The string to be trimmed. * @param characters The characters to be trimmed. @@ -20216,7 +20216,7 @@ public class DSL { /** * The RTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the right side of a string. * * @param string The string to be trimmed. * @param characters The characters to be trimmed. @@ -20230,7 +20230,7 @@ public class DSL { /** * The RTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the right side of a string. * * @param string The string to be trimmed. * @param characters The characters to be trimmed. @@ -20244,7 +20244,7 @@ public class DSL { /** * The RTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the right side of a string. * * @param string The string to be trimmed. */ @@ -20257,7 +20257,7 @@ public class DSL { /** * The RTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the right side of a string. * * @param string The string to be trimmed. */ diff --git a/jOOQ/src/main/java/org/jooq/impl/QOM.java b/jOOQ/src/main/java/org/jooq/impl/QOM.java index 6da94c91be..01b0b388a6 100644 --- a/jOOQ/src/main/java/org/jooq/impl/QOM.java +++ b/jOOQ/src/main/java/org/jooq/impl/QOM.java @@ -4955,7 +4955,7 @@ public final class QOM { /** * The LTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the left side of a string. */ public /*sealed*/ interface Ltrim extends @@ -5323,7 +5323,7 @@ public final class QOM { /** * The RTRIM function. *

- * Trim characters (whitespace as default) from both sides of a string. + * Trim characters (whitespace as default) from the right side of a string. */ public /*sealed*/ interface Rtrim extends