From fe223b21a779100e5b365c0ff973740742e779ce Mon Sep 17 00:00:00 2001 From: "obed.vazquez" Date: Fri, 28 Nov 2025 14:44:38 -0600 Subject: [PATCH] Hot fix. Fixing javadocs to deploy to maven central. --- README.md | 4 ++-- pom.xml | 2 +- .../utils/logging/WhiteLoggeable.java | 22 +++++++------------ 3 files changed, 11 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 9e39316..c75748c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A lightweight library containing shared and generic utility classes for Java-bas ## 1) What is this repository for? ### 1.1) Quick summary -Version: `1.0.6` +Version: `1.0.7` **White_Utils** is a public Java library that provides standardized and generic utility classes to simplify common operations such as logging, formatting, and general helper functions across Java and Maven projects. It is published for public consumption and is also used as a standard within White Organization. @@ -25,7 +25,7 @@ WhiteUtils is designed to be as generic and dependency-minimal as possible so it mx.whiteweb.sdev white-utils - 1.0.6 + 1.0.7 ``` diff --git a/pom.xml b/pom.xml index 901b498..1c19fa9 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ mx.whiteweb.sdev white-utils - 1.0.6 + 1.0.7 ${project.groupId}:${project.artifactId} A lightweight library containing shared and generic utility classes for Java-based projects. https://github.com/WhiteOrganization/white-utils diff --git a/src/main/java/org/white_sdev/utils/logging/WhiteLoggeable.java b/src/main/java/org/white_sdev/utils/logging/WhiteLoggeable.java index 55b7643..f3d5f42 100644 --- a/src/main/java/org/white_sdev/utils/logging/WhiteLoggeable.java +++ b/src/main/java/org/white_sdev/utils/logging/WhiteLoggeable.java @@ -1,31 +1,25 @@ package org.white_sdev.utils.logging; /** - *

- * Usage Sample: - *

- * - *
{@code
- * @Slf4j
+ * 

+ * @Slf4j
  * public class MyService implements WhiteLoggeable {
- *     @Override
- *     public org.slf4j.Logger getLogger() { return log; }
+ *
+ *     @Override
+ *     public org.slf4j.Logger getLogger() {
+ *         return log;
+ *     }
  *
  *     public void myProcess(String name, int age) {
- *         // Method chaining is supported - all logging methods return LogContext
  *         var log = withSignature("myProcess(name, age)")
  *             .start("Processing user {} with age {}", name, age);
  *
- *         log.debug("User age is {}", age);
  *         if (age < 18) {
  *             log.warn("User {} is a minor", name);
  *         }
- *
- *         log.info("User processed successfully")
- *             .end("age is now {}", age);
  *     }
  * }
- * }
+ *
*/ @SuppressWarnings("unused") public interface WhiteLoggeable {