jdk/src/share/classes/java/lang/invoke/MethodType.java
changeset 20494 cf77ae5ff678
parent 18569 0e46c17766b7
child 20535 cc85c8626435
--- a/jdk/src/share/classes/java/lang/invoke/MethodType.java	Tue Oct 01 10:37:05 2013 -0700
+++ b/jdk/src/share/classes/java/lang/invoke/MethodType.java	Mon Sep 23 19:51:40 2013 +0400
@@ -94,9 +94,9 @@
     private final Class<?>[] ptypes;
 
     // The remaining fields are caches of various sorts:
-    private MethodTypeForm form; // erased form, plus cached data about primitives
-    private MethodType wrapAlt;  // alternative wrapped/unwrapped version
-    private Invokers invokers;   // cache of handy higher-order adapters
+    private @Stable MethodTypeForm form; // erased form, plus cached data about primitives
+    private @Stable MethodType wrapAlt;  // alternative wrapped/unwrapped version
+    private @Stable Invokers invokers;   // cache of handy higher-order adapters
 
     /**
      * Check the given parameters for validity and store them into the final fields.