if (anonymous) {
String className = (String) in.readObject();
byte[] classFile = (byte[]) in.readObject();
byte[] obj = (byte[]) in.readObject();
final Inspection inspection = (Inspection) loadObject(className, classFile, obj);
inspections.add(inspection);
} else {
inspections.add((Inspection) in.readObject());
}