You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2022/08/01 10:19:39 UTC

[isis] branch master updated: ISIS-3103: comment out unused class

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8f33837c9c ISIS-3103: comment out unused class
8f33837c9c is described below

commit 8f33837c9c499271a0f222fe07ecfb735e84f346
Author: Andi Huber <ah...@apache.org>
AuthorDate: Mon Aug 1 12:19:33 2022 +0200

    ISIS-3103: comment out unused class
---
 .../serializing/SerializingAdapterDefault.java                | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/serializing/SerializingAdapterDefault.java b/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/serializing/SerializingAdapterDefault.java
index 5b63092ad9..fb320e79ef 100644
--- a/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/serializing/SerializingAdapterDefault.java
+++ b/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/serializing/SerializingAdapterDefault.java
@@ -40,7 +40,6 @@ import org.apache.isis.commons.internal.memento._Mementos.SerializingAdapter;
 import org.apache.isis.core.runtimeservices.IsisModuleCoreRuntimeServices;
 
 import lombok.NonNull;
-import lombok.Value;
 import lombok.val;
 
 /**
@@ -117,11 +116,11 @@ public class SerializingAdapterDefault implements SerializingAdapter {
 
     // -- HELPER
 
-    @Value(staticConstructor = "of")
-    private static final class StringifiedValueMemento implements Serializable {
-        private static final long serialVersionUID = 1L;
-        private final String stringifiedValue;
-    }
+//    @Value(staticConstructor = "of")
+//    private static final class StringifiedValueMemento implements Serializable {
+//        private static final long serialVersionUID = 1L;
+//        private final String stringifiedValue;
+//    }
 
     private <T> Optional<ValueDecomposition> toValueDecomposition(
             final @NonNull T value) {