Skip to content

Commit 56e6589

Browse files
committed
Fixed silly debugging line left in that disabled cloning (oops)
1 parent e244bcb commit 56e6589

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Code/ChroniclerJ/src/edu/columbia/cs/psl/chroniclerj/CloningUtils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,10 @@ public static final <T> T clone(T obj, String debug) {
132132
// return obj;
133133
// System.out.println(obj.getClass().getName());
134134
// System.out.println("source>"+obj.getClass().getName() +"..."+Thread.currentThread().getName());
135-
// T ret = cloner.deepClone(obj);
135+
T ret = cloner.deepClone(obj);
136136
// T ret = obj;
137-
// return ret;
138-
return obj;
137+
return ret;
138+
// return obj;
139139
}
140140

141141
// System.out.println("Done");

chroniclerj-0.4.1.jar

52 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)