Upgrading/adapting fixes to Groovy 2.5.7 from Groovy 2.4.8.
[jpf-core.git] / src / classes / java / lang / Class.java
index 00a55b0c1cc890d3958c1d41f4579737d4a75f1a..3d21d022d4db30f67b5915cd9a015021a424ae73 100644 (file)
@@ -349,6 +349,9 @@ public final class Class<T> implements Serializable, GenericDeclaration, Type, A
     throw new UnsupportedOperationException();
   }
 
+  // TODO: Fix for Groovy's model-checking
+  transient ClassValue.ClassValueMap classValueMap;
+
   public boolean isSynthetic (){
     final int SYNTHETIC = 0x00001000;
     return (getModifiers() & SYNTHETIC) != 0;