LSDUtil.setFinalField(f, proxy, origValue);
LSDController.getLog().fine("copied profiler field " + f + " = " + String.valueOf(origValue));
// "Neuter" the original profiler by changing its vanilla-defined
// reference types to new dummy instances.
if (f.getType() == List.class) {
LSDUtil.setFinalField(f, proxy.orig, new NullList());
} else if (f.getType() == Map.class) {
LSDUtil.setFinalField(f, proxy.orig, new NullMap());
}
}