src/share/vm/runtime/signature.hpp

changeset 4037
da91efe96a93
parent 3969
1d7922586cf6
child 5914
d13d7aba8c12
     1.1 --- a/src/share/vm/runtime/signature.hpp	Fri Aug 31 16:39:35 2012 -0700
     1.2 +++ b/src/share/vm/runtime/signature.hpp	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 @@ -26,7 +26,7 @@
    1.11  #define SHARE_VM_RUNTIME_SIGNATURE_HPP
    1.12  
    1.13  #include "memory/allocation.hpp"
    1.14 -#include "oops/methodOop.hpp"
    1.15 +#include "oops/method.hpp"
    1.16  #include "utilities/top.hpp"
    1.17  
    1.18  // SignatureIterators iterate over a Java signature (or parts of it).
    1.19 @@ -394,7 +394,7 @@
    1.20    BasicType type() const                         { return _type; }
    1.21    Symbol* as_symbol(TRAPS);
    1.22    enum FailureMode { ReturnNull, CNFException, NCDFError };
    1.23 -  klassOop as_klass(Handle class_loader, Handle protection_domain, FailureMode failure_mode, TRAPS);
    1.24 +  Klass* as_klass(Handle class_loader, Handle protection_domain, FailureMode failure_mode, TRAPS);
    1.25    oop as_java_mirror(Handle class_loader, Handle protection_domain, FailureMode failure_mode, TRAPS);
    1.26    const jbyte* raw_bytes()  { return _signature->bytes() + _begin; }
    1.27    int          raw_length() { return _end - _begin; }

mercurial