/[classpath]/classpath/java/util/logging/XMLFormatter.java
ViewVC logotype

Diff of /classpath/java/util/logging/XMLFormatter.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by mkoch, Wed Oct 20 07:54:15 2004 UTC revision 1.7 by mkoch, Fri Oct 22 17:15:57 2004 UTC
# Line 98  public class XMLFormatter Line 98  public class XMLFormatter
98     * @param content the element content, or <code>null</code> to     * @param content the element content, or <code>null</code> to
99     *        have no output whatsoever appended to <code>buf</code>.     *        have no output whatsoever appended to <code>buf</code>.
100     */     */
101    private static final void appendTag(StringBuffer buf,    private static void appendTag(StringBuffer buf, int indent,
102                                        int indent,                                  String tag, String content)
                                       String tag,  
                                       String content)  
103    {    {
104      int i;      int i;
105    
# Line 175  public class XMLFormatter Line 173  public class XMLFormatter
173     *     *
174     * @param content the element content.     * @param content the element content.
175     */     */
176    private static final void appendTag(StringBuffer buf,    private static void appendTag(StringBuffer buf, int indent,
177                                        int indent,                                  String tag, long content)
                                       String tag,  
                                       long content)  
178    {    {
179      appendTag(buf, indent, tag, Long.toString(content));      appendTag(buf, indent, tag, Long.toString(content));
180    }    }

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26