diff options
author | Andrew Haley <aph@redhat.com> | 2005-02-21 18:19:01 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2005-02-21 18:19:01 +0000 |
commit | 92c91cf7fe57f41771273f941431432c77f76f59 (patch) | |
tree | 57ba42b93a03c563ee94becf0073ad2559944c33 /libjava/java/util/logging/Logger.java | |
parent | d0a68934cfbcc6d52f54dcb69f146a628fcb6104 (diff) | |
download | gcc-92c91cf7fe57f41771273f941431432c77f76f59.zip gcc-92c91cf7fe57f41771273f941431432c77f76f59.tar.gz gcc-92c91cf7fe57f41771273f941431432c77f76f59.tar.bz2 |
Makefile.in: Rebuilt.
2005-02-21 Andrew Haley <aph@redhat.com>
* Makefile.in: Rebuilt.
* Makefile.am (nat_source_files): Added natLogger.cc.
* java/util/logging/natLogger.cc: New file.
* java/util/logging/Logger.java (getCallerStackFrame): Now
native.
From-SVN: r95338
Diffstat (limited to 'libjava/java/util/logging/Logger.java')
-rw-r--r-- | libjava/java/util/logging/Logger.java | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/libjava/java/util/logging/Logger.java b/libjava/java/util/logging/Logger.java index 99c9be9..2963555 100644 --- a/libjava/java/util/logging/Logger.java +++ b/libjava/java/util/logging/Logger.java @@ -1,5 +1,5 @@ /* Logger.java -- a class for logging messages - Copyright (C) 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -1169,17 +1169,5 @@ public class Logger * That should be the initial caller of a logging method. * @return caller of the initial looging method */ - private StackTraceElement getCallerStackFrame() - { - Throwable t = new Throwable(); - StackTraceElement[] stackTrace = t.getStackTrace(); - int index = 0; - // skip to stackentries until this class - while(!stackTrace[index].getClassName().equals(getClass().getName())){index++;} - // skip the stackentries of this class - while(stackTrace[index].getClassName().equals(getClass().getName())){index++;} - - return stackTrace[index]; - } - + private native StackTraceElement getCallerStackFrame(); } |