This is an automated email from the ASF dual-hosted git repository.
doebele pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/empire-db.git
The following commit(s) were added to refs/heads/master by this push:
new 3287cfba EMPIREDB-409 Reset original flag
3287cfba is described below
commit 3287cfbaf8ebdc3850f2270c72e620412d6ae609
Author: Rainer Döbele <[email protected]>
AuthorDate: Wed Apr 26 17:30:32 2023 +0200
EMPIREDB-409
Reset original flag
---
empire-db/src/main/java/org/apache/empire/commons/ClassUtils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/empire-db/src/main/java/org/apache/empire/commons/ClassUtils.java
b/empire-db/src/main/java/org/apache/empire/commons/ClassUtils.java
index 552b2665..de9bf5de 100644
--- a/empire-db/src/main/java/org/apache/empire/commons/ClassUtils.java
+++ b/empire-db/src/main/java/org/apache/empire/commons/ClassUtils.java
@@ -128,7 +128,7 @@ public final class ClassUtils
*/
public static <T> T copy(T obj)
{
- return copy(obj, Copy.RET_SELF | Copy.RECURSE_SHALLOW |
Copy.SKIP_SERIAL); /* Serial is too hot */
+ return copy(obj, Copy.RET_SELF | Copy.SKIP_SERIAL); /* Serial is too
hot */
}
/**