diff options
author | chibash <chiba@javassist.org> | 2015-12-08 00:10:58 +0900 |
---|---|---|
committer | chibash <chiba@javassist.org> | 2015-12-08 00:10:58 +0900 |
commit | 4cf21faf5416cb73988ba7556fdb91f6f604b311 (patch) | |
tree | 064344d744649154e233054c57879e156a4fbfb2 /tutorial/tutorial2.html | |
parent | bb2e4c8745bc156afa2a0c0a7e31419ed29afa02 (diff) | |
download | javassist-4cf21faf5416cb73988ba7556fdb91f6f604b311.tar.gz javassist-4cf21faf5416cb73988ba7556fdb91f6f604b311.zip |
fixes JASSIST-255 Primitive array return values cause invalid cast to Object
Diffstat (limited to 'tutorial/tutorial2.html')
-rw-r--r-- | tutorial/tutorial2.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/tutorial2.html b/tutorial/tutorial2.html index 9a962ac3..f92f96e9 100644 --- a/tutorial/tutorial2.html +++ b/tutorial/tutorial2.html @@ -481,7 +481,7 @@ compiled code at the end of the method. In the statement given to available. <p>The variable <code>$_</code> represents the resulting value of the -method. So it is a write-only variable. +method. The type of that variable is the type of the result type (the return type) of the method. If the result type is <code>void</code>, then the type of <code>$_</code> is <code>Object</code> and the value |