src/share/vm/oops/method.cpp

changeset 5307
e0c9a1d29eb4
parent 5208
a1ebd310d5c1
child 5432
16511b7e3d35
     1.1 --- a/src/share/vm/oops/method.cpp	Sun Jun 23 22:08:28 2013 -0700
     1.2 +++ b/src/share/vm/oops/method.cpp	Mon Jun 24 18:55:46 2013 -0400
     1.3 @@ -1969,14 +1969,9 @@
     1.4  
     1.5  void Method::verify_on(outputStream* st) {
     1.6    guarantee(is_method(), "object must be method");
     1.7 -  guarantee(is_metadata(),  "should be metadata");
     1.8    guarantee(constants()->is_constantPool(), "should be constant pool");
     1.9 -  guarantee(constants()->is_metadata(), "should be metadata");
    1.10    guarantee(constMethod()->is_constMethod(), "should be ConstMethod*");
    1.11 -  guarantee(constMethod()->is_metadata(), "should be metadata");
    1.12    MethodData* md = method_data();
    1.13    guarantee(md == NULL ||
    1.14 -      md->is_metadata(), "should be metadata");
    1.15 -  guarantee(md == NULL ||
    1.16        md->is_methodData(), "should be method data");
    1.17  }

mercurial