From db16733be672e62973a3d6cc0dc06e05d43cd558 Mon Sep 17 00:00:00 2001 From: Konstantin Pavlov <{ID}+{username}@users.noreply.github.com> Date: Tue, 21 Jan 2025 10:59:35 +0200 Subject: [PATCH] Fix punctuation in Javadoc comments for LoggingMarkers. Added missing periods to improve consistency and clarity in the Javadoc comments. This change ensures proper formatting and adheres to standard writing conventions. Signed-off-by: Konstantin Pavlov <{ID}+{username}@users.noreply.github.com> --- .../java/org/springframework/ai/util/LoggingMarkers.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-ai-core/src/main/java/org/springframework/ai/util/LoggingMarkers.java b/spring-ai-core/src/main/java/org/springframework/ai/util/LoggingMarkers.java index 35e02d7f62..a4c31e3b6d 100644 --- a/spring-ai-core/src/main/java/org/springframework/ai/util/LoggingMarkers.java +++ b/spring-ai-core/src/main/java/org/springframework/ai/util/LoggingMarkers.java @@ -20,7 +20,7 @@ public class LoggingMarkers { *
  • Business processes and logic
  • *
  • etc.
  • * - * Typically, logging this information should be avoided + * Typically, logging this information should be avoided. */ public static final Marker SENSITIVE_DATA_MARKER = MarkerFactory.getMarker("SENSITIVE"); @@ -35,7 +35,7 @@ public class LoggingMarkers { *
  • Trade secrets
  • *
  • etc.
  • * - * Logging of such information is usually prohibited in any circumstances + * Logging of such information is usually prohibited in any circumstances. */ public static final Marker RESTRICTED_DATA_MARKER = MarkerFactory.getMarker("RESTRICTED"); @@ -50,7 +50,7 @@ public class LoggingMarkers { *
  • Compliance-controlled data
  • *
  • etc.
  • * - * Logging of such information should be avoided + * Logging of such information should be avoided. */ public static final Marker REGULATED_DATA_MARKER = MarkerFactory.getMarker("REGULATED"); @@ -62,7 +62,7 @@ public class LoggingMarkers { *
  • Marketing materials
  • *
  • etc.
  • * - * There are no restriction for + * There are no restriction for logging such information. */ public static final Marker PUBLIC_DATA_MARKER = MarkerFactory.getMarker("PUBLIC");