diff options
| -rw-r--r-- | vars/utils.groovy | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/vars/utils.groovy b/vars/utils.groovy index 98bacf5..60b76c9 100644 --- a/vars/utils.groovy +++ b/vars/utils.groovy @@ -101,24 +101,6 @@ def concurrent(configs) { } //end concurrent -///** -// * This method makes a "deep clone" of any object it is given. -// */ -//def deepClone(object) { -// //try { -// ByteArrayOutputStream baos = new ByteArrayOutputStream() -// ObjectOutputStream oos = new ObjectOutputStream(baos) -// oos.writeObject(object) -// ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray()) -// ObjectInputStream ois = new ObjectInputStream(bais) -// return ois.readObject() -// //} -// //catch (Exception e) { -// // e.printStackTrace() -// // return null -// //} -//} - // standard deep copy implementation def deepcopy(orig) { bos = new ByteArrayOutputStream() |
