aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vars/utils.groovy11
1 files changed, 0 insertions, 11 deletions
diff --git a/vars/utils.groovy b/vars/utils.groovy
index 60b76c9..fe76bca 100644
--- a/vars/utils.groovy
+++ b/vars/utils.groovy
@@ -99,14 +99,3 @@ def concurrent(configs) {
parallel(tasks)
}
} //end concurrent
-
-
-// standard deep copy implementation
-def deepcopy(orig) {
- bos = new ByteArrayOutputStream()
- oos = new ObjectOutputStream(bos)
- oos.writeObject(orig); oos.flush()
- bin = new ByteArrayInputStream(bos.toByteArray())
- ois = new ObjectInputStream(bin)
- return ois.readObject()
-}