Fixed an NPE when jmeClone() was asked to clone a null.
This commit is contained in:
parent
78a5a25fc1
commit
68ace33dbd
@ -354,6 +354,9 @@ public class Cloner {
|
|||||||
* clone() and objects without necessarily knowing their real type.</p>
|
* clone() and objects without necessarily knowing their real type.</p>
|
||||||
*/
|
*/
|
||||||
public <T> T javaClone( T object ) throws CloneNotSupportedException {
|
public <T> T javaClone( T object ) throws CloneNotSupportedException {
|
||||||
|
if( object == null ) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
Method m = methodCache.get(object.getClass());
|
Method m = methodCache.get(object.getClass());
|
||||||
if( m == null ) {
|
if( m == null ) {
|
||||||
try {
|
try {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user