src/share/vm/runtime/reflection.cpp

changeset 9507
7e72702243a4
parent 8368
32b682649973
child 9572
624a0741915c
child 9969
40f45911050f
equal deleted inserted replaced
9499:778ff2150570 9507:7e72702243a4
1 /* 1 /*
2 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2018, 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.
680 } 680 }
681 return mirrors; 681 return mirrors;
682 } 682 }
683 683
684 objArrayHandle Reflection::get_exception_types(methodHandle method, TRAPS) { 684 objArrayHandle Reflection::get_exception_types(methodHandle method, TRAPS) {
685 return method->resolved_checked_exceptions(CHECK_(objArrayHandle())); 685 return method->resolved_checked_exceptions(THREAD);
686 } 686 }
687 687
688 688
689 Handle Reflection::new_type(Symbol* signature, KlassHandle k, TRAPS) { 689 Handle Reflection::new_type(Symbol* signature, KlassHandle k, TRAPS) {
690 // Basic types 690 // Basic types

mercurial