src/share/vm/runtime/signature.cpp

changeset 4037
da91efe96a93
parent 2708
1d1603768966
child 4278
070d523b96a7
     1.1 --- a/src/share/vm/runtime/signature.cpp	Fri Aug 31 16:39:35 2012 -0700
     1.2 +++ b/src/share/vm/runtime/signature.cpp	Sat Sep 01 13:25:18 2012 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -336,7 +336,7 @@
    1.11    return name;
    1.12  }
    1.13  
    1.14 -klassOop SignatureStream::as_klass(Handle class_loader, Handle protection_domain,
    1.15 +Klass* SignatureStream::as_klass(Handle class_loader, Handle protection_domain,
    1.16                                     FailureMode failure_mode, TRAPS) {
    1.17    if (!is_object())  return NULL;
    1.18    Symbol* name = as_symbol(CHECK_NULL);
    1.19 @@ -352,7 +352,7 @@
    1.20                                      FailureMode failure_mode, TRAPS) {
    1.21    if (!is_object())
    1.22      return Universe::java_mirror(type());
    1.23 -  klassOop klass = as_klass(class_loader, protection_domain, failure_mode, CHECK_NULL);
    1.24 +  Klass* klass = as_klass(class_loader, protection_domain, failure_mode, CHECK_NULL);
    1.25    if (klass == NULL)  return NULL;
    1.26    return Klass::cast(klass)->java_mirror();
    1.27  }

mercurial