src/share/vm/classfile/dictionary.hpp

changeset 5784
190899198332
parent 5100
43083e670adf
child 5865
aa6f2ea19d8f
equal deleted inserted replaced
5783:c1fbf21c7397 5784:190899198332
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 };

mercurial