src/share/vm/prims/jvmtiRedefineClasses.cpp

changeset 1040
98cb887364d3
parent 953
0af8b0718fc9
child 1049
3db67f76d308
     1.1 --- a/src/share/vm/prims/jvmtiRedefineClasses.cpp	Fri Feb 27 08:34:19 2009 -0800
     1.2 +++ b/src/share/vm/prims/jvmtiRedefineClasses.cpp	Fri Feb 27 13:27:09 2009 -0800
     1.3 @@ -1349,39 +1349,39 @@
     1.4  
     1.5    // rewrite constant pool references in the methods:
     1.6    if (!rewrite_cp_refs_in_methods(scratch_class, THREAD)) {
     1.7 -    // propogate failure back to caller
     1.8 +    // propagate failure back to caller
     1.9      return false;
    1.10    }
    1.11  
    1.12    // rewrite constant pool references in the class_annotations:
    1.13    if (!rewrite_cp_refs_in_class_annotations(scratch_class, THREAD)) {
    1.14 -    // propogate failure back to caller
    1.15 +    // propagate failure back to caller
    1.16      return false;
    1.17    }
    1.18  
    1.19    // rewrite constant pool references in the fields_annotations:
    1.20    if (!rewrite_cp_refs_in_fields_annotations(scratch_class, THREAD)) {
    1.21 -    // propogate failure back to caller
    1.22 +    // propagate failure back to caller
    1.23      return false;
    1.24    }
    1.25  
    1.26    // rewrite constant pool references in the methods_annotations:
    1.27    if (!rewrite_cp_refs_in_methods_annotations(scratch_class, THREAD)) {
    1.28 -    // propogate failure back to caller
    1.29 +    // propagate failure back to caller
    1.30      return false;
    1.31    }
    1.32  
    1.33    // rewrite constant pool references in the methods_parameter_annotations:
    1.34    if (!rewrite_cp_refs_in_methods_parameter_annotations(scratch_class,
    1.35           THREAD)) {
    1.36 -    // propogate failure back to caller
    1.37 +    // propagate failure back to caller
    1.38      return false;
    1.39    }
    1.40  
    1.41    // rewrite constant pool references in the methods_default_annotations:
    1.42    if (!rewrite_cp_refs_in_methods_default_annotations(scratch_class,
    1.43           THREAD)) {
    1.44 -    // propogate failure back to caller
    1.45 +    // propagate failure back to caller
    1.46      return false;
    1.47    }
    1.48  
    1.49 @@ -1600,7 +1600,7 @@
    1.50             byte_i_ref, THREAD)) {
    1.51        RC_TRACE_WITH_THREAD(0x02000000, THREAD,
    1.52          ("bad annotation_struct at %d", calc_num_annotations));
    1.53 -      // propogate failure back to caller
    1.54 +      // propagate failure back to caller
    1.55        return false;
    1.56      }
    1.57    }
    1.58 @@ -1666,7 +1666,7 @@
    1.59             byte_i_ref, THREAD)) {
    1.60        RC_TRACE_WITH_THREAD(0x02000000, THREAD,
    1.61          ("bad element_value at %d", calc_num_element_value_pairs));
    1.62 -      // propogate failure back to caller
    1.63 +      // propagate failure back to caller
    1.64        return false;
    1.65      }
    1.66    } // end for each component
    1.67 @@ -1815,7 +1815,7 @@
    1.68        // field. This is a nested annotation.
    1.69        if (!rewrite_cp_refs_in_annotation_struct(annotations_typeArray,
    1.70               byte_i_ref, THREAD)) {
    1.71 -        // propogate failure back to caller
    1.72 +        // propagate failure back to caller
    1.73          return false;
    1.74        }
    1.75        break;
    1.76 @@ -1842,7 +1842,7 @@
    1.77                 annotations_typeArray, byte_i_ref, THREAD)) {
    1.78            RC_TRACE_WITH_THREAD(0x02000000, THREAD,
    1.79              ("bad nested element_value at %d", calc_num_values));
    1.80 -          // propogate failure back to caller
    1.81 +          // propagate failure back to caller
    1.82            return false;
    1.83          }
    1.84        }
    1.85 @@ -1886,7 +1886,7 @@
    1.86             THREAD)) {
    1.87        RC_TRACE_WITH_THREAD(0x02000000, THREAD,
    1.88          ("bad field_annotations at %d", i));
    1.89 -      // propogate failure back to caller
    1.90 +      // propagate failure back to caller
    1.91        return false;
    1.92      }
    1.93    }
    1.94 @@ -1923,7 +1923,7 @@
    1.95             THREAD)) {
    1.96        RC_TRACE_WITH_THREAD(0x02000000, THREAD,
    1.97          ("bad method_annotations at %d", i));
    1.98 -      // propogate failure back to caller
    1.99 +      // propagate failure back to caller
   1.100        return false;
   1.101      }
   1.102    }
   1.103 @@ -1991,7 +1991,7 @@
   1.104               method_parameter_annotations, byte_i, THREAD)) {
   1.105          RC_TRACE_WITH_THREAD(0x02000000, THREAD,
   1.106            ("bad method_parameter_annotations at %d", calc_num_parameters));
   1.107 -        // propogate failure back to caller
   1.108 +        // propagate failure back to caller
   1.109          return false;
   1.110        }
   1.111      }
   1.112 @@ -2041,7 +2041,7 @@
   1.113             method_default_annotations, byte_i, THREAD)) {
   1.114        RC_TRACE_WITH_THREAD(0x02000000, THREAD,
   1.115          ("bad default element_value at %d", i));
   1.116 -      // propogate failure back to caller
   1.117 +      // propagate failure back to caller
   1.118        return false;
   1.119      }
   1.120    }

mercurial