This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/master by this push:
     new e4cbc02cef Remove dangling javadoc comments (#12463)
e4cbc02cef is described below

commit e4cbc02cef36f3a9bad5f7940250db1d709e5aab
Author: Elliotte Rusty Harold <[email protected]>
AuthorDate: Fri Jul 10 18:52:53 2026 -0500

    Remove dangling javadoc comments (#12463)
    
    * Remove dangling javadoc comments
    
    * spotless
---
 .../java/org/apache/maven/api/cache/RequestResult.java   | 16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)

diff --git 
a/api/maven-api-core/src/main/java/org/apache/maven/api/cache/RequestResult.java
 
b/api/maven-api-core/src/main/java/org/apache/maven/api/cache/RequestResult.java
index 2876a3bb6a..71a540a5a1 100644
--- 
a/api/maven-api-core/src/main/java/org/apache/maven/api/cache/RequestResult.java
+++ 
b/api/maven-api-core/src/main/java/org/apache/maven/api/cache/RequestResult.java
@@ -36,21 +36,7 @@
  * @since 4.0.0
  */
 @Experimental
-public record RequestResult<REQ extends Request<?>, REP extends Result<REQ>>(
-        /**
-         * The original request that was processed
-         */
-        REQ request,
-
-        /**
-         * The result of the request, if successful; may be null if an error 
occurred
-         */
-        REP result,
-
-        /**
-         * Any error that occurred during processing; null if the request was 
successful
-         */
-        Throwable error) {
+public record RequestResult<REQ extends Request<?>, REP extends 
Result<REQ>>(REQ request, REP result, Throwable error) {
 
     /**
      * Determines if the request was processed successfully.

Reply via email to