summaryrefslogtreecommitdiff
path: root/libjava/java/lang/reflect/Method.java
diff options
context:
space:
mode:
authorBryce McKinlay <bryce@albatross.co.nz>2001-03-22 06:37:16 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2001-03-22 06:37:16 +0000
commit595420bfea88f5c0117e887cf70345a61f26e893 (patch)
tree08734c6e8a2c1015192562c9270d8e20edcdca96 /libjava/java/lang/reflect/Method.java
parentb5f1747c3003fa07e3564daeaa267c2da7454f67 (diff)
Method.java (getExceptionTypes): Call getType() to initialize if exception_types is null.
* java/lang/reflect/Method.java (getExceptionTypes): Call getType() to initialize if exception_types is null. * java/lang/reflect/Constructor.java: Likewise. * java/lang/reflect/natConstructor.cc (getType): Initialize exception_types to an empty Object array. From-SVN: r40730
Diffstat (limited to 'libjava/java/lang/reflect/Method.java')
-rw-r--r--libjava/java/lang/reflect/Method.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/libjava/java/lang/reflect/Method.java b/libjava/java/lang/reflect/Method.java
index 119a56f2141..e616670e587 100644
--- a/libjava/java/lang/reflect/Method.java
+++ b/libjava/java/lang/reflect/Method.java
@@ -1,6 +1,6 @@
// Method.java - Represent method of class or interface.
-/* Copyright (C) 1998, 1999, 2000 Free Software Foundation
+/* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation
This file is part of libgcj.
@@ -39,6 +39,8 @@ public final class Method extends AccessibleObject implements Member
public Class[] getExceptionTypes ()
{
+ if (exception_types == null)
+ getType();
return (Class[]) exception_types.clone();
}