summaryrefslogtreecommitdiff
path: root/gnu/classpath/debug/Simple1LineFormatter.java
Commit message (Collapse)AuthorAgeFilesLines
* 2006-07-10 Vivek Lakshmanan <vivekl@redhat.com>Vivek Lakshmanan2006-07-111-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR 27649: * gnu/classpath/debug/Simple1LineFormatter.java: Use AccessController.doPrivileged instead of SystemProperties.getProperty. * gnu/classpath/debug/SystemLogger.java: Likewise. * gnu/java/security/PolicyFile.java: Likewise and cut unnecessary repeated getProperty calls for "file.seperator". (refresh): Since already in privileged block, call System.getProperty instead of SystemProperties.getProperty. * gnu/java/security/key/dss/DSSKey.java (toString): Use AccessController.doPrivileged instead of SystemProperties.getProperty. * gnu/java/security/key/dss/DSSPrivateKey.java (toString): Likewise. * gnu/java/security/key/dss/DSSPublicKey.java (toString): Likewise. * gnu/java/security/key/rsa/GnuRSAKey.java (toString): Likewise. * gnu/java/security/key/rsa/GnuRSAPrivateKey.java (toString): Likewise. * gnu/java/security/key/rsa/GnuRSAPublicKey.java (toString): Likewise. * gnu/javax/crypto/sasl/plain/PasswordFile.java: Likewise. * gnu/javax/crypto/key/dh/GnuDHKey.java (toString): Likewise. * gnu/javax/crypto/key/dh/GnuDHPrivateKey.java (toString): Likewise. * gnu/javax/crypto/key/dh/GnuDHPublicKey.java (toString): Likewise.
* 2006-05-07 Raif S. Naffah <raif@swiftdsl.com.au>Raif S. Naffah2006-05-071-5/+12
| | | | | | | | | * gnu/classpath/debug/Simple1LineFormatter.java (DAT_FORMAT): Removed. (THREAD_FORMAT): Likewise. (dateFormat): Added field. (threadFormat): Added field. (format): Initialize instance fields if null. Use StringBuilder instead of StringBuffer.
* 2006-03-01 Raif S. Naffah <raif@swiftdsl.com.au>Raif S. Naffah2006-02-281-0/+153
* gnu/classpath/debug/Simple1LineFormatter.java: New file.