You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2020/01/01 15:37:47 UTC

[maven] 01/01: [MNG-6828] Make DependencyResolutionResult transient

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

slachiewicz pushed a commit to branch MNG-6828
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 73ace0e63f81a07855ea3bf0812a78566c3927b5
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Wed Jan 1 16:37:10 2020 +0100

    [MNG-6828] Make DependencyResolutionResult transient
---
 .../java/org/apache/maven/project/DependencyResolutionException.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java b/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java
index 50e601e..ecd0151 100644
--- a/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java
+++ b/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java
@@ -26,7 +26,7 @@ public class DependencyResolutionException
     extends Exception
 {
 
-    private DependencyResolutionResult result;
+    private final transient DependencyResolutionResult result;
 
     public DependencyResolutionException( DependencyResolutionResult result, String message, Throwable cause )
     {