hotspot/src/share/vm/classfile/dictionary.hpp
changeset 20282 7f9cbdf89af2
parent 17373 7d8bb2a8787e
child 20408 ca559663042f
equal deleted inserted replaced
20281:e4d33bd980c4 20282:7f9cbdf89af2
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   262       method()->print_value_on(st);
   262       method()->print_value_on(st);
   263       printed = true;
   263       printed = true;
   264     }
   264     }
   265     if (method_type() != NULL) {
   265     if (method_type() != NULL) {
   266       if (printed)  st->print(" and ");
   266       if (printed)  st->print(" and ");
   267       st->print(INTPTR_FORMAT, method_type());
   267       st->print(INTPTR_FORMAT, (void *)method_type());
   268       printed = true;
   268       printed = true;
   269     }
   269     }
   270     st->print_cr(printed ? "" : "(empty)");
   270     st->print_cr(printed ? "" : "(empty)");
   271   }
   271   }
   272 };
   272 };