equal
deleted
inserted
replaced
1 /* |
1 /* |
2 * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved. |
2 * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 * |
4 * |
5 * This code is free software; you can redistribute it and/or modify it |
5 * This code is free software; you can redistribute it and/or modify it |
6 * under the terms of the GNU General Public License version 2 only, as |
6 * under the terms of the GNU General Public License version 2 only, as |
7 * published by the Free Software Foundation. Oracle designates this |
7 * published by the Free Software Foundation. Oracle designates this |
41 |
41 |
42 private Object args[] = new Object[1]; |
42 private Object args[] = new Object[1]; |
43 |
43 |
44 // Line separator string. This is the value of the line.separator |
44 // Line separator string. This is the value of the line.separator |
45 // property at the moment that the SimpleFormatter was created. |
45 // property at the moment that the SimpleFormatter was created. |
46 private String lineSeparator = (String) java.security.AccessController.doPrivileged( |
46 private String lineSeparator = java.security.AccessController.doPrivileged( |
47 new sun.security.action.GetPropertyAction("line.separator")); |
47 new sun.security.action.GetPropertyAction("line.separator")); |
48 |
48 |
49 boolean displayFullRecord = false; |
49 boolean displayFullRecord = false; |
50 boolean useANSI = false; |
50 boolean useANSI = false; |
51 boolean showDate = true; |
51 boolean showDate = true; |